| 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/debug/trace_event.h" | |
| 10 #include "base/threading/thread_local_storage.h" | 9 #include "base/threading/thread_local_storage.h" |
| 11 #include "base/timer/timer.h" | 10 #include "base/timer/timer.h" |
| 11 #include "base/trace_event/trace_event.h" |
| 12 #include "content/child/webcrypto/webcrypto_impl.h" | 12 #include "content/child/webcrypto/webcrypto_impl.h" |
| 13 #include "content/child/webfallbackthemeengine_impl.h" | 13 #include "content/child/webfallbackthemeengine_impl.h" |
| 14 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
| 15 #include "third_party/WebKit/public/platform/Platform.h" | 15 #include "third_party/WebKit/public/platform/Platform.h" |
| 16 #include "third_party/WebKit/public/platform/WebGestureDevice.h" | 16 #include "third_party/WebKit/public/platform/WebGestureDevice.h" |
| 17 #include "third_party/WebKit/public/platform/WebURLError.h" | 17 #include "third_party/WebKit/public/platform/WebURLError.h" |
| 18 #include "ui/base/layout.h" | 18 #include "ui/base/layout.h" |
| 19 | 19 |
| 20 #if defined(USE_DEFAULT_RENDER_THEME) | 20 #if defined(USE_DEFAULT_RENDER_THEME) |
| 21 #include "content/child/webthemeengine_impl_default.h" | 21 #include "content/child/webthemeengine_impl_default.h" |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 scoped_ptr<WebBluetoothImpl> bluetooth_; | 190 scoped_ptr<WebBluetoothImpl> bluetooth_; |
| 191 | 191 |
| 192 scoped_refptr<ThreadSafeSender> thread_safe_sender_; | 192 scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
| 193 scoped_refptr<NotificationDispatcher> notification_dispatcher_; | 193 scoped_refptr<NotificationDispatcher> notification_dispatcher_; |
| 194 scoped_refptr<PushDispatcher> push_dispatcher_; | 194 scoped_refptr<PushDispatcher> push_dispatcher_; |
| 195 }; | 195 }; |
| 196 | 196 |
| 197 } // namespace content | 197 } // namespace content |
| 198 | 198 |
| 199 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ | 199 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |