| 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 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "content/common/webkitplatformsupport_impl.h" | 10 #include "content/child/webkitplatformsupport_impl.h" |
| 11 | 11 |
| 12 namespace content { | 12 namespace content { |
| 13 | 13 |
| 14 class PpapiWebKitPlatformSupportImpl : public WebKitPlatformSupportImpl { | 14 class PpapiWebKitPlatformSupportImpl : public WebKitPlatformSupportImpl { |
| 15 public: | 15 public: |
| 16 PpapiWebKitPlatformSupportImpl(); | 16 PpapiWebKitPlatformSupportImpl(); |
| 17 virtual ~PpapiWebKitPlatformSupportImpl(); | 17 virtual ~PpapiWebKitPlatformSupportImpl(); |
| 18 | 18 |
| 19 // WebKitPlatformSupport methods: | 19 // WebKitPlatformSupport methods: |
| 20 virtual WebKit::WebClipboard* clipboard(); | 20 virtual WebKit::WebClipboard* clipboard(); |
| (...skipping 30 matching lines...) Expand all Loading... |
| 51 private: | 51 private: |
| 52 class SandboxSupport; | 52 class SandboxSupport; |
| 53 scoped_ptr<SandboxSupport> sandbox_support_; | 53 scoped_ptr<SandboxSupport> sandbox_support_; |
| 54 | 54 |
| 55 DISALLOW_COPY_AND_ASSIGN(PpapiWebKitPlatformSupportImpl); | 55 DISALLOW_COPY_AND_ASSIGN(PpapiWebKitPlatformSupportImpl); |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 } // namespace content | 58 } // namespace content |
| 59 | 59 |
| 60 #endif // CONTENT_PPAPI_PLUGIN_PPAPI_WEBKITPLATFORMSUPPORT_IMPL_H_ | 60 #endif // CONTENT_PPAPI_PLUGIN_PPAPI_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| OLD | NEW |