| 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 "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/id_map.h" | 9 #include "base/id_map.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "cc/blink/web_compositor_support_impl.h" | 11 #include "cc/blink/web_compositor_support_impl.h" |
| 12 #include "content/child/blink_platform_impl.h" | 12 #include "content/child/blink_platform_impl.h" |
| 13 #include "content/common/content_export.h" | 13 #include "content/common/content_export.h" |
| 14 #include "content/renderer/webpublicsuffixlist_impl.h" | 14 #include "content/renderer/webpublicsuffixlist_impl.h" |
| 15 #include "device/vibration/vibration_manager.mojom.h" | 15 #include "device/vibration/vibration_manager.mojom.h" |
| 16 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" | 16 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" |
| 17 #include "third_party/WebKit/public/platform/WebScreenOrientationType.h" | |
| 18 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBFactory.h" | 17 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBFactory.h" |
| 18 #include "third_party/WebKit/public/platform/modules/screen_orientation/WebScree
nOrientationType.h" |
| 19 | 19 |
| 20 namespace cc { | 20 namespace cc { |
| 21 class ContextProvider; | 21 class ContextProvider; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace IPC { | 24 namespace IPC { |
| 25 class SyncMessageFilter; | 25 class SyncMessageFilter; |
| 26 } | 26 } |
| 27 | 27 |
| 28 namespace blink { | 28 namespace blink { |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 device::VibrationManagerPtr vibration_manager_; | 260 device::VibrationManagerPtr vibration_manager_; |
| 261 | 261 |
| 262 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 262 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
| 263 | 263 |
| 264 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 264 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 265 }; | 265 }; |
| 266 | 266 |
| 267 } // namespace content | 267 } // namespace content |
| 268 | 268 |
| 269 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 269 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |