| 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 27 matching lines...) Expand all Loading... |
| 38 class WebDeviceOrientationData; | 38 class WebDeviceOrientationData; |
| 39 class WebGraphicsContext3DProvider; | 39 class WebGraphicsContext3DProvider; |
| 40 class WebMediaPlayer; | 40 class WebMediaPlayer; |
| 41 class WebMediaRecorderHandler; | 41 class WebMediaRecorderHandler; |
| 42 class WebMediaStream; | 42 class WebMediaStream; |
| 43 class WebSecurityOrigin; | 43 class WebSecurityOrigin; |
| 44 class WebServiceWorkerCacheStorage; | 44 class WebServiceWorkerCacheStorage; |
| 45 } | 45 } |
| 46 | 46 |
| 47 namespace service_manager { | 47 namespace service_manager { |
| 48 class InterfaceProvider; | 48 class Connector; |
| 49 } | 49 } |
| 50 | 50 |
| 51 namespace content { | 51 namespace content { |
| 52 class BlinkInterfaceProviderImpl; | 52 class BlinkInterfaceProviderImpl; |
| 53 class LocalStorageCachedAreas; | 53 class LocalStorageCachedAreas; |
| 54 class PlatformEventObserverBase; | 54 class PlatformEventObserverBase; |
| 55 class QuotaMessageFilter; | 55 class QuotaMessageFilter; |
| 56 class RendererClipboardDelegate; | 56 class RendererClipboardDelegate; |
| 57 class ThreadSafeSender; | 57 class ThreadSafeSender; |
| 58 class WebClipboardImpl; | 58 class WebClipboardImpl; |
| 59 class WebDatabaseObserverImpl; | 59 class WebDatabaseObserverImpl; |
| 60 | 60 |
| 61 class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl { | 61 class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl { |
| 62 public: | 62 public: |
| 63 RendererBlinkPlatformImpl( | 63 RendererBlinkPlatformImpl( |
| 64 blink::scheduler::RendererScheduler* renderer_scheduler, | 64 blink::scheduler::RendererScheduler* renderer_scheduler, |
| 65 base::WeakPtr<service_manager::InterfaceProvider> remote_interfaces); | 65 base::WeakPtr<service_manager::Connector> connector); |
| 66 ~RendererBlinkPlatformImpl() override; | 66 ~RendererBlinkPlatformImpl() override; |
| 67 | 67 |
| 68 // Shutdown must be called just prior to shutting down blink. | 68 // Shutdown must be called just prior to shutting down blink. |
| 69 void Shutdown(); | 69 void Shutdown(); |
| 70 | 70 |
| 71 void set_plugin_refresh_allowed(bool plugin_refresh_allowed) { | 71 void set_plugin_refresh_allowed(bool plugin_refresh_allowed) { |
| 72 plugin_refresh_allowed_ = plugin_refresh_allowed; | 72 plugin_refresh_allowed_ = plugin_refresh_allowed; |
| 73 } | 73 } |
| 74 // Platform methods: | 74 // Platform methods: |
| 75 blink::WebClipboard* clipboard() override; | 75 blink::WebClipboard* clipboard() override; |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; | 298 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; |
| 299 | 299 |
| 300 mojom::URLLoaderFactoryAssociatedPtr url_loader_factory_; | 300 mojom::URLLoaderFactoryAssociatedPtr url_loader_factory_; |
| 301 | 301 |
| 302 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 302 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 303 }; | 303 }; |
| 304 | 304 |
| 305 } // namespace content | 305 } // namespace content |
| 306 | 306 |
| 307 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 307 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |