| 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 "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/containers/scoped_ptr_hash_map.h" | 9 #include "base/containers/scoped_ptr_hash_map.h" |
| 10 #include "base/threading/thread_local_storage.h" | 10 #include "base/threading/thread_local_storage.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 namespace base { | 31 namespace base { |
| 32 class MessageLoop; | 32 class MessageLoop; |
| 33 class WaitableEvent; | 33 class WaitableEvent; |
| 34 } | 34 } |
| 35 | 35 |
| 36 namespace scheduler { | 36 namespace scheduler { |
| 37 class WebThreadBase; | 37 class WebThreadBase; |
| 38 } | 38 } |
| 39 | 39 |
| 40 namespace scheduler { |
| 41 class WebThreadImplForWorkerScheduler; |
| 42 } |
| 43 |
| 40 namespace content { | 44 namespace content { |
| 41 class BackgroundSyncProvider; | 45 class BackgroundSyncProvider; |
| 42 class FlingCurveConfiguration; | 46 class FlingCurveConfiguration; |
| 43 class NotificationDispatcher; | 47 class NotificationDispatcher; |
| 44 class PermissionDispatcher; | 48 class PermissionDispatcher; |
| 45 class PushDispatcher; | 49 class PushDispatcher; |
| 46 class ThreadSafeSender; | 50 class ThreadSafeSender; |
| 47 class TraceLogObserverAdapter; | 51 class TraceLogObserverAdapter; |
| 48 class WebCryptoImpl; | 52 class WebCryptoImpl; |
| 49 class WebGeofencingProviderImpl; | 53 class WebGeofencingProviderImpl; |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 scoped_refptr<PushDispatcher> push_dispatcher_; | 225 scoped_refptr<PushDispatcher> push_dispatcher_; |
| 222 scoped_ptr<PermissionDispatcher> permission_client_; | 226 scoped_ptr<PermissionDispatcher> permission_client_; |
| 223 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_; | 227 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_; |
| 224 | 228 |
| 225 scheduler::WebThreadBase* compositor_thread_; | 229 scheduler::WebThreadBase* compositor_thread_; |
| 226 }; | 230 }; |
| 227 | 231 |
| 228 } // namespace content | 232 } // namespace content |
| 229 | 233 |
| 230 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ | 234 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |