| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 | 45 |
| 46 namespace scheduler { | 46 namespace scheduler { |
| 47 class RendererScheduler; | 47 class RendererScheduler; |
| 48 class WebThreadImplForRendererScheduler; | 48 class WebThreadImplForRendererScheduler; |
| 49 } | 49 } |
| 50 | 50 |
| 51 namespace content { | 51 namespace content { |
| 52 class DeviceLightEventPump; | 52 class DeviceLightEventPump; |
| 53 class DeviceMotionEventPump; | 53 class DeviceMotionEventPump; |
| 54 class DeviceOrientationEventPump; | 54 class DeviceOrientationEventPump; |
| 55 class LocalStorageCachedAreas; |
| 55 class PlatformEventObserverBase; | 56 class PlatformEventObserverBase; |
| 56 class QuotaMessageFilter; | 57 class QuotaMessageFilter; |
| 57 class RendererClipboardDelegate; | 58 class RendererClipboardDelegate; |
| 58 class RenderView; | 59 class RenderView; |
| 59 class ThreadSafeSender; | 60 class ThreadSafeSender; |
| 60 class WebClipboardImpl; | 61 class WebClipboardImpl; |
| 61 class WebDatabaseObserverImpl; | 62 class WebDatabaseObserverImpl; |
| 62 class WebFileSystemImpl; | 63 class WebFileSystemImpl; |
| 63 | 64 |
| 64 class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl { | 65 class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl { |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 | 289 |
| 289 // Handle to the Vibration mojo service. | 290 // Handle to the Vibration mojo service. |
| 290 device::VibrationManagerPtr vibration_manager_; | 291 device::VibrationManagerPtr vibration_manager_; |
| 291 | 292 |
| 292 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 293 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
| 293 | 294 |
| 294 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED | 295 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED |
| 295 | 296 |
| 296 TrialTokenValidator trial_token_validator_; | 297 TrialTokenValidator trial_token_validator_; |
| 297 | 298 |
| 299 scoped_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; |
| 300 |
| 298 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 301 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 299 }; | 302 }; |
| 300 | 303 |
| 301 } // namespace content | 304 } // namespace content |
| 302 | 305 |
| 303 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 306 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |