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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 | 276 |
280 // If true, then a GetPlugins call is allowed to rescan the disk. | 277 // If true, then a GetPlugins call is allowed to rescan the disk. |
281 bool plugin_refresh_allowed_; | 278 bool plugin_refresh_allowed_; |
282 | 279 |
283 std::unique_ptr<blink::WebIDBFactory> web_idb_factory_; | 280 std::unique_ptr<blink::WebIDBFactory> web_idb_factory_; |
284 | 281 |
285 std::unique_ptr<blink::WebBlobRegistry> blob_registry_; | 282 std::unique_ptr<blink::WebBlobRegistry> blob_registry_; |
286 | 283 |
287 WebPublicSuffixListImpl public_suffix_list_; | 284 WebPublicSuffixListImpl public_suffix_list_; |
288 | 285 |
289 std::unique_ptr<DeviceLightEventPump> device_light_event_pump_; | |
290 std::unique_ptr<DeviceMotionEventPump> device_motion_event_pump_; | |
291 std::unique_ptr<DeviceOrientationEventPump> device_orientation_event_pump_; | |
292 | |
293 scoped_refptr<base::SingleThreadTaskRunner> default_task_runner_; | 286 scoped_refptr<base::SingleThreadTaskRunner> default_task_runner_; |
294 scoped_refptr<base::SingleThreadTaskRunner> loading_task_runner_; | 287 scoped_refptr<base::SingleThreadTaskRunner> loading_task_runner_; |
295 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_; | 288 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_; |
296 scoped_refptr<ThreadSafeSender> thread_safe_sender_; | 289 scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
297 scoped_refptr<QuotaMessageFilter> quota_message_filter_; | 290 scoped_refptr<QuotaMessageFilter> quota_message_filter_; |
298 | 291 |
299 std::unique_ptr<WebDatabaseObserverImpl> web_database_observer_impl_; | 292 std::unique_ptr<WebDatabaseObserverImpl> web_database_observer_impl_; |
300 | 293 |
301 cc_blink::WebCompositorSupportImpl compositor_support_; | 294 cc_blink::WebCompositorSupportImpl compositor_support_; |
302 | 295 |
303 std::unique_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_; | 296 std::unique_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_; |
304 | 297 |
305 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 298 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
306 | 299 |
307 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED | 300 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED |
308 TopLevelBlameContext top_level_blame_context_; | 301 TopLevelBlameContext top_level_blame_context_; |
309 | 302 |
310 WebTrialTokenValidatorImpl trial_token_validator_; | 303 WebTrialTokenValidatorImpl trial_token_validator_; |
311 | 304 |
312 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; | 305 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; |
313 | 306 |
314 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; | 307 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; |
315 | 308 |
316 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 309 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
317 }; | 310 }; |
318 | 311 |
319 } // namespace content | 312 } // namespace content |
320 | 313 |
321 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 314 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
OLD | NEW |