| 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_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 class WebDeviceMotionData; | 42 class WebDeviceMotionData; |
| 43 class WebDeviceOrientationData; | 43 class WebDeviceOrientationData; |
| 44 class WebGraphicsContext3DProvider; | 44 class WebGraphicsContext3DProvider; |
| 45 class WebMediaPlayer; | 45 class WebMediaPlayer; |
| 46 class WebMediaRecorderHandler; | 46 class WebMediaRecorderHandler; |
| 47 class WebMediaStream; | 47 class WebMediaStream; |
| 48 class WebSecurityOrigin; | 48 class WebSecurityOrigin; |
| 49 class WebServiceWorkerCacheStorage; | 49 class WebServiceWorkerCacheStorage; |
| 50 } | 50 } |
| 51 | 51 |
| 52 namespace shell { | 52 namespace service_manager { |
| 53 class InterfaceProvider; | 53 class InterfaceProvider; |
| 54 } | 54 } |
| 55 | 55 |
| 56 namespace content { | 56 namespace content { |
| 57 class BlinkInterfaceProviderImpl; | 57 class BlinkInterfaceProviderImpl; |
| 58 class LocalStorageCachedAreas; | 58 class LocalStorageCachedAreas; |
| 59 class PlatformEventObserverBase; | 59 class PlatformEventObserverBase; |
| 60 class QuotaMessageFilter; | 60 class QuotaMessageFilter; |
| 61 class RendererClipboardDelegate; | 61 class RendererClipboardDelegate; |
| 62 class RenderView; | 62 class RenderView; |
| 63 class ThreadSafeSender; | 63 class ThreadSafeSender; |
| 64 class WebClipboardImpl; | 64 class WebClipboardImpl; |
| 65 class WebDatabaseObserverImpl; | 65 class WebDatabaseObserverImpl; |
| 66 class WebFileSystemImpl; | 66 class WebFileSystemImpl; |
| 67 | 67 |
| 68 class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl { | 68 class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl { |
| 69 public: | 69 public: |
| 70 RendererBlinkPlatformImpl( | 70 RendererBlinkPlatformImpl( |
| 71 blink::scheduler::RendererScheduler* renderer_scheduler, | 71 blink::scheduler::RendererScheduler* renderer_scheduler, |
| 72 base::WeakPtr<shell::InterfaceProvider> remote_interfaces); | 72 base::WeakPtr<service_manager::InterfaceProvider> remote_interfaces); |
| 73 ~RendererBlinkPlatformImpl() override; | 73 ~RendererBlinkPlatformImpl() override; |
| 74 | 74 |
| 75 // Shutdown must be called just prior to shutting down blink. | 75 // Shutdown must be called just prior to shutting down blink. |
| 76 void Shutdown(); | 76 void Shutdown(); |
| 77 | 77 |
| 78 void set_plugin_refresh_allowed(bool plugin_refresh_allowed) { | 78 void set_plugin_refresh_allowed(bool plugin_refresh_allowed) { |
| 79 plugin_refresh_allowed_ = plugin_refresh_allowed; | 79 plugin_refresh_allowed_ = plugin_refresh_allowed; |
| 80 } | 80 } |
| 81 // Platform methods: | 81 // Platform methods: |
| 82 blink::WebClipboard* clipboard() override; | 82 blink::WebClipboard* clipboard() override; |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; | 312 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; |
| 313 | 313 |
| 314 mojom::URLLoaderFactoryPtr url_loader_factory_; | 314 mojom::URLLoaderFactoryPtr url_loader_factory_; |
| 315 | 315 |
| 316 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 316 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 317 }; | 317 }; |
| 318 | 318 |
| 319 } // namespace content | 319 } // namespace content |
| 320 | 320 |
| 321 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 321 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |