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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 class RendererScheduler; | 47 class RendererScheduler; |
48 class WebThreadImplForRendererScheduler; | 48 class WebThreadImplForRendererScheduler; |
49 } | 49 } |
50 | 50 |
51 namespace shell { | 51 namespace shell { |
52 class InterfaceProvider; | 52 class InterfaceProvider; |
53 } | 53 } |
54 | 54 |
55 namespace content { | 55 namespace content { |
56 class BlinkServiceRegistryImpl; | 56 class BlinkServiceRegistryImpl; |
57 class DeviceLightEventPump; | |
58 class DeviceMotionEventPump; | |
59 class DeviceOrientationEventPump; | |
60 class LocalStorageCachedAreas; | 57 class LocalStorageCachedAreas; |
61 class PlatformEventObserverBase; | 58 class PlatformEventObserverBase; |
62 class QuotaMessageFilter; | 59 class QuotaMessageFilter; |
63 class RendererClipboardDelegate; | 60 class RendererClipboardDelegate; |
64 class RenderView; | 61 class RenderView; |
65 class ThreadSafeSender; | 62 class ThreadSafeSender; |
66 class WebClipboardImpl; | 63 class WebClipboardImpl; |
67 class WebDatabaseObserverImpl; | 64 class WebDatabaseObserverImpl; |
68 class WebFileSystemImpl; | 65 class WebFileSystemImpl; |
69 | 66 |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 | 275 |
279 // If true, then a GetPlugins call is allowed to rescan the disk. | 276 // If true, then a GetPlugins call is allowed to rescan the disk. |
280 bool plugin_refresh_allowed_; | 277 bool plugin_refresh_allowed_; |
281 | 278 |
282 std::unique_ptr<blink::WebIDBFactory> web_idb_factory_; | 279 std::unique_ptr<blink::WebIDBFactory> web_idb_factory_; |
283 | 280 |
284 std::unique_ptr<blink::WebBlobRegistry> blob_registry_; | 281 std::unique_ptr<blink::WebBlobRegistry> blob_registry_; |
285 | 282 |
286 WebPublicSuffixListImpl public_suffix_list_; | 283 WebPublicSuffixListImpl public_suffix_list_; |
287 | 284 |
288 std::unique_ptr<DeviceLightEventPump> device_light_event_pump_; | |
289 std::unique_ptr<DeviceMotionEventPump> device_motion_event_pump_; | |
290 std::unique_ptr<DeviceOrientationEventPump> device_orientation_event_pump_; | |
291 | |
292 scoped_refptr<base::SingleThreadTaskRunner> default_task_runner_; | 285 scoped_refptr<base::SingleThreadTaskRunner> default_task_runner_; |
293 scoped_refptr<base::SingleThreadTaskRunner> loading_task_runner_; | 286 scoped_refptr<base::SingleThreadTaskRunner> loading_task_runner_; |
294 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_; | 287 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_; |
295 scoped_refptr<ThreadSafeSender> thread_safe_sender_; | 288 scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
296 scoped_refptr<QuotaMessageFilter> quota_message_filter_; | 289 scoped_refptr<QuotaMessageFilter> quota_message_filter_; |
297 | 290 |
298 std::unique_ptr<WebDatabaseObserverImpl> web_database_observer_impl_; | 291 std::unique_ptr<WebDatabaseObserverImpl> web_database_observer_impl_; |
299 | 292 |
300 cc_blink::WebCompositorSupportImpl compositor_support_; | 293 cc_blink::WebCompositorSupportImpl compositor_support_; |
301 | 294 |
302 std::unique_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_; | 295 std::unique_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_; |
303 | 296 |
304 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 297 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
305 | 298 |
306 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED | 299 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED |
307 TopLevelBlameContext top_level_blame_context_; | 300 TopLevelBlameContext top_level_blame_context_; |
308 | 301 |
309 WebTrialTokenValidatorImpl trial_token_validator_; | 302 WebTrialTokenValidatorImpl trial_token_validator_; |
310 | 303 |
311 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; | 304 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; |
312 | 305 |
313 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; | 306 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; |
314 | 307 |
315 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 308 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
316 }; | 309 }; |
317 | 310 |
318 } // namespace content | 311 } // namespace content |
319 | 312 |
320 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 313 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
OLD | NEW |