| 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" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 class WebGraphicsContext3DProvider; | 35 class WebGraphicsContext3DProvider; |
| 36 } | 36 } |
| 37 | 37 |
| 38 namespace content { | 38 namespace content { |
| 39 class BatteryStatusDispatcher; | 39 class BatteryStatusDispatcher; |
| 40 class DeviceLightEventPump; | 40 class DeviceLightEventPump; |
| 41 class DeviceMotionEventPump; | 41 class DeviceMotionEventPump; |
| 42 class DeviceOrientationEventPump; | 42 class DeviceOrientationEventPump; |
| 43 class PlatformEventObserverBase; | 43 class PlatformEventObserverBase; |
| 44 class QuotaMessageFilter; | 44 class QuotaMessageFilter; |
| 45 class RendererClipboardClient; | 45 class RendererClipboardDelegate; |
| 46 class RendererScheduler; | 46 class RendererScheduler; |
| 47 class RenderView; | 47 class RenderView; |
| 48 class ThreadSafeSender; | 48 class ThreadSafeSender; |
| 49 class WebBluetoothImpl; | 49 class WebBluetoothImpl; |
| 50 class WebClipboardImpl; | 50 class WebClipboardImpl; |
| 51 class WebDatabaseObserverImpl; | 51 class WebDatabaseObserverImpl; |
| 52 class WebFileSystemImpl; | 52 class WebFileSystemImpl; |
| 53 class WebSchedulerImpl; | 53 class WebSchedulerImpl; |
| 54 | 54 |
| 55 class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl { | 55 class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl { |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 // it. | 199 // it. |
| 200 static PlatformEventObserverBase* CreatePlatformEventObserverFromType( | 200 static PlatformEventObserverBase* CreatePlatformEventObserverFromType( |
| 201 blink::WebPlatformEventType type); | 201 blink::WebPlatformEventType type); |
| 202 | 202 |
| 203 // Use the data previously set via SetMockDevice...DataForTesting() and send | 203 // Use the data previously set via SetMockDevice...DataForTesting() and send |
| 204 // them to the registered listener. | 204 // them to the registered listener. |
| 205 void SendFakeDeviceEventDataForTesting(blink::WebPlatformEventType type); | 205 void SendFakeDeviceEventDataForTesting(blink::WebPlatformEventType type); |
| 206 | 206 |
| 207 scoped_ptr<WebSchedulerImpl> web_scheduler_; | 207 scoped_ptr<WebSchedulerImpl> web_scheduler_; |
| 208 | 208 |
| 209 scoped_ptr<RendererClipboardClient> clipboard_client_; | 209 scoped_ptr<RendererClipboardDelegate> clipboard_delegate_; |
| 210 scoped_ptr<WebClipboardImpl> clipboard_; | 210 scoped_ptr<WebClipboardImpl> clipboard_; |
| 211 | 211 |
| 212 class FileUtilities; | 212 class FileUtilities; |
| 213 scoped_ptr<FileUtilities> file_utilities_; | 213 scoped_ptr<FileUtilities> file_utilities_; |
| 214 | 214 |
| 215 class MimeRegistry; | 215 class MimeRegistry; |
| 216 scoped_ptr<MimeRegistry> mime_registry_; | 216 scoped_ptr<MimeRegistry> mime_registry_; |
| 217 | 217 |
| 218 class SandboxSupport; | 218 class SandboxSupport; |
| 219 scoped_ptr<SandboxSupport> sandbox_support_; | 219 scoped_ptr<SandboxSupport> sandbox_support_; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 scoped_ptr<WebBluetoothImpl> bluetooth_; | 253 scoped_ptr<WebBluetoothImpl> bluetooth_; |
| 254 | 254 |
| 255 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 255 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
| 256 | 256 |
| 257 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 257 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 258 }; | 258 }; |
| 259 | 259 |
| 260 } // namespace content | 260 } // namespace content |
| 261 | 261 |
| 262 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 262 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |