| 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_BLINK_PLATFORM_IMPL_H_ | 5 #ifndef CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_ |
| 6 #define CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_ | 6 #define CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include <stddef.h> |
| 9 |
| 10 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "build/build_config.h" |
| 10 #include "content/child/blink_platform_impl.h" | 13 #include "content/child/blink_platform_impl.h" |
| 11 | 14 |
| 12 namespace content { | 15 namespace content { |
| 13 | 16 |
| 14 class PpapiBlinkPlatformImpl : public BlinkPlatformImpl { | 17 class PpapiBlinkPlatformImpl : public BlinkPlatformImpl { |
| 15 public: | 18 public: |
| 16 PpapiBlinkPlatformImpl(); | 19 PpapiBlinkPlatformImpl(); |
| 17 ~PpapiBlinkPlatformImpl() override; | 20 ~PpapiBlinkPlatformImpl() override; |
| 18 | 21 |
| 19 // Shutdown must be called just prior to shutting down blink. | 22 // Shutdown must be called just prior to shutting down blink. |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 class SandboxSupport; | 58 class SandboxSupport; |
| 56 scoped_ptr<SandboxSupport> sandbox_support_; | 59 scoped_ptr<SandboxSupport> sandbox_support_; |
| 57 #endif | 60 #endif |
| 58 | 61 |
| 59 DISALLOW_COPY_AND_ASSIGN(PpapiBlinkPlatformImpl); | 62 DISALLOW_COPY_AND_ASSIGN(PpapiBlinkPlatformImpl); |
| 60 }; | 63 }; |
| 61 | 64 |
| 62 } // namespace content | 65 } // namespace content |
| 63 | 66 |
| 64 #endif // CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_ | 67 #endif // CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |