OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_PPAPI_PLUGIN_PPAPI_WEBKITPLATFORMSUPPORT_IMPL_H_ | 5 #ifndef CONTENT_PPAPI_PLUGIN_PPAPI_WEBKITPLATFORMSUPPORT_IMPL_H_ |
6 #define CONTENT_PPAPI_PLUGIN_PPAPI_WEBKITPLATFORMSUPPORT_IMPL_H_ | 6 #define CONTENT_PPAPI_PLUGIN_PPAPI_WEBKITPLATFORMSUPPORT_IMPL_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
10 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
11 #include "content/common/webkitplatformsupport_impl.h" | 10 #include "content/common/webkitplatformsupport_impl.h" |
12 | 11 |
13 class PpapiWebKitPlatformSupportImpl : | 12 class PpapiWebKitPlatformSupportImpl : |
14 public content::WebKitPlatformSupportImpl { | 13 public content::WebKitPlatformSupportImpl { |
15 public: | 14 public: |
16 PpapiWebKitPlatformSupportImpl(); | 15 PpapiWebKitPlatformSupportImpl(); |
17 virtual ~PpapiWebKitPlatformSupportImpl(); | 16 virtual ~PpapiWebKitPlatformSupportImpl(); |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 const WebKit::WebIDBKeyPath& keyPath); | 57 const WebKit::WebIDBKeyPath& keyPath); |
59 | 58 |
60 private: | 59 private: |
61 class SandboxSupport; | 60 class SandboxSupport; |
62 scoped_ptr<SandboxSupport> sandbox_support_; | 61 scoped_ptr<SandboxSupport> sandbox_support_; |
63 | 62 |
64 DISALLOW_COPY_AND_ASSIGN(PpapiWebKitPlatformSupportImpl); | 63 DISALLOW_COPY_AND_ASSIGN(PpapiWebKitPlatformSupportImpl); |
65 }; | 64 }; |
66 | 65 |
67 #endif // CONTENT_PPAPI_PLUGIN_PPAPI_WEBKITPLATFORMSUPPORT_IMPL_H_ | 66 #endif // CONTENT_PPAPI_PLUGIN_PPAPI_WEBKITPLATFORMSUPPORT_IMPL_H_ |
OLD | NEW |