| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_CHILD_BLINK_PLATFORM_IMPL_H_ | 5 #ifndef CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ |
| 6 #define CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ | 6 #define CONTENT_CHILD_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 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 namespace base { | 35 namespace base { |
| 36 class MessageLoop; | 36 class MessageLoop; |
| 37 class WaitableEvent; | 37 class WaitableEvent; |
| 38 } | 38 } |
| 39 | 39 |
| 40 namespace scheduler { | 40 namespace scheduler { |
| 41 class WebThreadBase; | 41 class WebThreadBase; |
| 42 } | 42 } |
| 43 | 43 |
| 44 namespace scheduler { |
| 45 class WebThreadImplForWorkerScheduler; |
| 46 } |
| 47 |
| 44 namespace content { | 48 namespace content { |
| 45 class BackgroundSyncProvider; | 49 class BackgroundSyncProvider; |
| 46 class FlingCurveConfiguration; | 50 class FlingCurveConfiguration; |
| 47 class NotificationDispatcher; | 51 class NotificationDispatcher; |
| 48 class PermissionDispatcher; | 52 class PermissionDispatcher; |
| 49 class PushDispatcher; | 53 class PushDispatcher; |
| 50 class ThreadSafeSender; | 54 class ThreadSafeSender; |
| 51 class TraceLogObserverAdapter; | 55 class TraceLogObserverAdapter; |
| 52 class WebCryptoImpl; | 56 class WebCryptoImpl; |
| 53 class WebGeofencingProviderImpl; | 57 class WebGeofencingProviderImpl; |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 scoped_refptr<PushDispatcher> push_dispatcher_; | 221 scoped_refptr<PushDispatcher> push_dispatcher_; |
| 218 scoped_ptr<PermissionDispatcher> permission_client_; | 222 scoped_ptr<PermissionDispatcher> permission_client_; |
| 219 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_; | 223 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_; |
| 220 | 224 |
| 221 scheduler::WebThreadBase* compositor_thread_; | 225 scheduler::WebThreadBase* compositor_thread_; |
| 222 }; | 226 }; |
| 223 | 227 |
| 224 } // namespace content | 228 } // namespace content |
| 225 | 229 |
| 226 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ | 230 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |