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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 namespace content { | 44 namespace content { |
45 class BackgroundSyncProvider; | 45 class BackgroundSyncProvider; |
46 class FlingCurveConfiguration; | 46 class FlingCurveConfiguration; |
47 class NotificationDispatcher; | 47 class NotificationDispatcher; |
48 class PermissionDispatcher; | 48 class PermissionDispatcher; |
49 class PushDispatcher; | 49 class PushDispatcher; |
50 class ThreadSafeSender; | 50 class ThreadSafeSender; |
51 class TraceLogObserverAdapter; | 51 class TraceLogObserverAdapter; |
52 class WebCryptoImpl; | 52 class WebCryptoImpl; |
53 class WebGeofencingProviderImpl; | 53 class WebGeofencingProviderImpl; |
| 54 class WebMemoryDumpProviderAdapter; |
54 | 55 |
55 class CONTENT_EXPORT BlinkPlatformImpl | 56 class CONTENT_EXPORT BlinkPlatformImpl |
56 : NON_EXPORTED_BASE(public blink::Platform) { | 57 : NON_EXPORTED_BASE(public blink::Platform) { |
57 public: | 58 public: |
58 BlinkPlatformImpl(); | 59 BlinkPlatformImpl(); |
59 explicit BlinkPlatformImpl( | 60 explicit BlinkPlatformImpl( |
60 scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner); | 61 scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner); |
61 ~BlinkPlatformImpl() override; | 62 ~BlinkPlatformImpl() override; |
62 | 63 |
63 // Platform methods (partial implementation): | 64 // Platform methods (partial implementation): |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 void UpdateWebThreadTLS(blink::WebThread* thread, base::WaitableEvent* event); | 152 void UpdateWebThreadTLS(blink::WebThread* thread, base::WaitableEvent* event); |
152 | 153 |
153 bool IsMainThread() const; | 154 bool IsMainThread() const; |
154 | 155 |
155 scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner_; | 156 scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner_; |
156 WebThemeEngineImpl native_theme_engine_; | 157 WebThemeEngineImpl native_theme_engine_; |
157 WebFallbackThemeEngineImpl fallback_theme_engine_; | 158 WebFallbackThemeEngineImpl fallback_theme_engine_; |
158 base::ThreadLocalStorage::Slot current_thread_slot_; | 159 base::ThreadLocalStorage::Slot current_thread_slot_; |
159 webcrypto::WebCryptoImpl web_crypto_; | 160 webcrypto::WebCryptoImpl web_crypto_; |
160 scoped_ptr<WebGeofencingProviderImpl> geofencing_provider_; | 161 scoped_ptr<WebGeofencingProviderImpl> geofencing_provider_; |
| 162 base::ScopedPtrHashMap<blink::WebMemoryDumpProvider*, |
| 163 scoped_ptr<WebMemoryDumpProviderAdapter>> |
| 164 memory_dump_providers_; |
161 base::ScopedPtrHashMap<blink::Platform::TraceLogEnabledStateObserver*, | 165 base::ScopedPtrHashMap<blink::Platform::TraceLogEnabledStateObserver*, |
162 scoped_ptr<TraceLogObserverAdapter>> | 166 scoped_ptr<TraceLogObserverAdapter>> |
163 trace_log_observers_; | 167 trace_log_observers_; |
164 | 168 |
165 scoped_refptr<ThreadSafeSender> thread_safe_sender_; | 169 scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
166 scoped_refptr<NotificationDispatcher> notification_dispatcher_; | 170 scoped_refptr<NotificationDispatcher> notification_dispatcher_; |
167 scoped_refptr<PushDispatcher> push_dispatcher_; | 171 scoped_refptr<PushDispatcher> push_dispatcher_; |
168 scoped_ptr<PermissionDispatcher> permission_client_; | 172 scoped_ptr<PermissionDispatcher> permission_client_; |
169 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_; | 173 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_; |
170 | 174 |
171 scheduler::WebThreadBase* compositor_thread_; | 175 scheduler::WebThreadBase* compositor_thread_; |
172 }; | 176 }; |
173 | 177 |
174 } // namespace content | 178 } // namespace content |
175 | 179 |
176 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ | 180 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ |
OLD | NEW |