| 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/threading/thread_local_storage.h" | 9 #include "base/threading/thread_local_storage.h" |
| 10 #include "base/timer/timer.h" | 10 #include "base/timer/timer.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "content/child/webthemeengine_impl_android.h" | 27 #include "content/child/webthemeengine_impl_android.h" |
| 28 #endif | 28 #endif |
| 29 | 29 |
| 30 namespace base { | 30 namespace base { |
| 31 class MessageLoop; | 31 class MessageLoop; |
| 32 } | 32 } |
| 33 | 33 |
| 34 namespace content { | 34 namespace content { |
| 35 class FlingCurveConfiguration; | 35 class FlingCurveConfiguration; |
| 36 class NotificationDispatcher; | 36 class NotificationDispatcher; |
| 37 class PermissionManager; | 37 class PermissionDispatcher; |
| 38 class PushDispatcher; | 38 class PushDispatcher; |
| 39 class ThreadSafeSender; | 39 class ThreadSafeSender; |
| 40 class WebBluetoothImpl; | 40 class WebBluetoothImpl; |
| 41 class WebCryptoImpl; | 41 class WebCryptoImpl; |
| 42 class WebGeofencingProviderImpl; | 42 class WebGeofencingProviderImpl; |
| 43 | 43 |
| 44 class CONTENT_EXPORT BlinkPlatformImpl | 44 class CONTENT_EXPORT BlinkPlatformImpl |
| 45 : NON_EXPORTED_BASE(public blink::Platform) { | 45 : NON_EXPORTED_BASE(public blink::Platform) { |
| 46 public: | 46 public: |
| 47 BlinkPlatformImpl(); | 47 BlinkPlatformImpl(); |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 bool shared_timer_fire_time_was_set_while_suspended_; | 191 bool shared_timer_fire_time_was_set_while_suspended_; |
| 192 int shared_timer_suspended_; // counter | 192 int shared_timer_suspended_; // counter |
| 193 base::ThreadLocalStorage::Slot current_thread_slot_; | 193 base::ThreadLocalStorage::Slot current_thread_slot_; |
| 194 WebCryptoImpl web_crypto_; | 194 WebCryptoImpl web_crypto_; |
| 195 scoped_ptr<WebGeofencingProviderImpl> geofencing_provider_; | 195 scoped_ptr<WebGeofencingProviderImpl> geofencing_provider_; |
| 196 scoped_ptr<WebBluetoothImpl> bluetooth_; | 196 scoped_ptr<WebBluetoothImpl> bluetooth_; |
| 197 | 197 |
| 198 scoped_refptr<ThreadSafeSender> thread_safe_sender_; | 198 scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
| 199 scoped_refptr<NotificationDispatcher> notification_dispatcher_; | 199 scoped_refptr<NotificationDispatcher> notification_dispatcher_; |
| 200 scoped_refptr<PushDispatcher> push_dispatcher_; | 200 scoped_refptr<PushDispatcher> push_dispatcher_; |
| 201 scoped_ptr<PermissionManager> permission_client_; | 201 scoped_ptr<PermissionDispatcher> permission_client_; |
| 202 }; | 202 }; |
| 203 | 203 |
| 204 } // namespace content | 204 } // namespace content |
| 205 | 205 |
| 206 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ | 206 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |