| 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 15 matching lines...) Expand all Loading... |
| 26 #include "content/child/webthemeengine_impl_mac.h" | 26 #include "content/child/webthemeengine_impl_mac.h" |
| 27 #elif defined(OS_ANDROID) | 27 #elif defined(OS_ANDROID) |
| 28 #include "content/child/webthemeengine_impl_android.h" | 28 #include "content/child/webthemeengine_impl_android.h" |
| 29 #endif | 29 #endif |
| 30 | 30 |
| 31 namespace base { | 31 namespace base { |
| 32 class MessageLoop; | 32 class MessageLoop; |
| 33 } | 33 } |
| 34 | 34 |
| 35 namespace content { | 35 namespace content { |
| 36 class BackgroundSyncProvider; | |
| 37 class FlingCurveConfiguration; | 36 class FlingCurveConfiguration; |
| 38 class NotificationDispatcher; | 37 class NotificationDispatcher; |
| 39 class PermissionDispatcher; | 38 class PermissionDispatcher; |
| 40 class PushDispatcher; | 39 class PushDispatcher; |
| 41 class ThreadSafeSender; | 40 class ThreadSafeSender; |
| 42 class WebCryptoImpl; | 41 class WebCryptoImpl; |
| 43 class WebGeofencingProviderImpl; | 42 class WebGeofencingProviderImpl; |
| 44 class WebMemoryDumpProviderAdapter; | 43 class WebMemoryDumpProviderAdapter; |
| 45 | 44 |
| 46 class CONTENT_EXPORT BlinkPlatformImpl | 45 class CONTENT_EXPORT BlinkPlatformImpl |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 webcrypto::WebCryptoImpl web_crypto_; | 195 webcrypto::WebCryptoImpl web_crypto_; |
| 197 scoped_ptr<WebGeofencingProviderImpl> geofencing_provider_; | 196 scoped_ptr<WebGeofencingProviderImpl> geofencing_provider_; |
| 198 base::ScopedPtrHashMap<blink::WebMemoryDumpProvider*, | 197 base::ScopedPtrHashMap<blink::WebMemoryDumpProvider*, |
| 199 scoped_ptr<WebMemoryDumpProviderAdapter>> | 198 scoped_ptr<WebMemoryDumpProviderAdapter>> |
| 200 memory_dump_providers_; | 199 memory_dump_providers_; |
| 201 | 200 |
| 202 scoped_refptr<ThreadSafeSender> thread_safe_sender_; | 201 scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
| 203 scoped_refptr<NotificationDispatcher> notification_dispatcher_; | 202 scoped_refptr<NotificationDispatcher> notification_dispatcher_; |
| 204 scoped_refptr<PushDispatcher> push_dispatcher_; | 203 scoped_refptr<PushDispatcher> push_dispatcher_; |
| 205 scoped_ptr<PermissionDispatcher> permission_client_; | 204 scoped_ptr<PermissionDispatcher> permission_client_; |
| 206 scoped_ptr<BackgroundSyncProvider> sync_provider_; | |
| 207 }; | 205 }; |
| 208 | 206 |
| 209 } // namespace content | 207 } // namespace content |
| 210 | 208 |
| 211 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ | 209 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |