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 |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/id_map.h" | 12 #include "base/id_map.h" |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
15 #include "build/build_config.h" | 15 #include "build/build_config.h" |
16 #include "cc/blink/web_compositor_support_impl.h" | 16 #include "cc/blink/web_compositor_support_impl.h" |
17 #include "content/child/blink_platform_impl.h" | 17 #include "content/child/blink_platform_impl.h" |
18 #include "content/common/content_export.h" | 18 #include "content/common/content_export.h" |
19 #include "content/renderer/origin_trials/trial_token_validator.h" | 19 #include "content/renderer/origin_trials/web_trial_token_validator_impl.h" |
20 #include "content/renderer/webpublicsuffixlist_impl.h" | 20 #include "content/renderer/webpublicsuffixlist_impl.h" |
21 #include "device/vibration/vibration_manager.mojom.h" | 21 #include "device/vibration/vibration_manager.mojom.h" |
22 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" | 22 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" |
23 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBFactory.h" | 23 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBFactory.h" |
24 #include "third_party/WebKit/public/platform/modules/screen_orientation/WebScree
nOrientationType.h" | 24 #include "third_party/WebKit/public/platform/modules/screen_orientation/WebScree
nOrientationType.h" |
25 | 25 |
26 namespace cc { | 26 namespace cc { |
27 class ContextProvider; | 27 class ContextProvider; |
28 } | 28 } |
29 | 29 |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 | 287 |
288 scoped_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_; | 288 scoped_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_; |
289 | 289 |
290 // Handle to the Vibration mojo service. | 290 // Handle to the Vibration mojo service. |
291 device::VibrationManagerPtr vibration_manager_; | 291 device::VibrationManagerPtr vibration_manager_; |
292 | 292 |
293 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 293 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
294 | 294 |
295 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED | 295 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED |
296 | 296 |
297 TrialTokenValidator trial_token_validator_; | 297 WebTrialTokenValidatorImpl trial_token_validator_; |
298 | 298 |
299 scoped_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; | 299 scoped_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; |
300 | 300 |
301 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 301 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
302 }; | 302 }; |
303 | 303 |
304 } // namespace content | 304 } // namespace content |
305 | 305 |
306 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 306 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
OLD | NEW |