| 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 virtual blink::WebString queryLocalizedString( | 117 virtual blink::WebString queryLocalizedString( |
| 118 blink::WebLocalizedString::Name name, | 118 blink::WebLocalizedString::Name name, |
| 119 int numeric_value); | 119 int numeric_value); |
| 120 blink::WebString queryLocalizedString(blink::WebLocalizedString::Name name, | 120 blink::WebString queryLocalizedString(blink::WebLocalizedString::Name name, |
| 121 const blink::WebString& value) override; | 121 const blink::WebString& value) override; |
| 122 blink::WebString queryLocalizedString( | 122 blink::WebString queryLocalizedString( |
| 123 blink::WebLocalizedString::Name name, | 123 blink::WebLocalizedString::Name name, |
| 124 const blink::WebString& value1, | 124 const blink::WebString& value1, |
| 125 const blink::WebString& value2) override; | 125 const blink::WebString& value2) override; |
| 126 void suddenTerminationChanged(bool enabled) override {} | 126 void suddenTerminationChanged(bool enabled) override {} |
| 127 double currentTimeSeconds() override; | |
| 128 double monotonicallyIncreasingTimeSeconds() override; | |
| 129 blink::WebThread* compositorThread() const override; | 127 blink::WebThread* compositorThread() const override; |
| 130 blink::WebGestureCurve* createFlingAnimationCurve( | 128 blink::WebGestureCurve* createFlingAnimationCurve( |
| 131 blink::WebGestureDevice device_source, | 129 blink::WebGestureDevice device_source, |
| 132 const blink::WebFloatPoint& velocity, | 130 const blink::WebFloatPoint& velocity, |
| 133 const blink::WebSize& cumulative_scroll) override; | 131 const blink::WebSize& cumulative_scroll) override; |
| 134 void didStartWorkerThread() override; | 132 void didStartWorkerThread() override; |
| 135 void willStopWorkerThread() override; | 133 void willStopWorkerThread() override; |
| 136 blink::WebCrypto* crypto() override; | 134 blink::WebCrypto* crypto() override; |
| 137 blink::WebGeofencingProvider* geofencingProvider() override; | 135 blink::WebGeofencingProvider* geofencingProvider() override; |
| 138 blink::WebNotificationManager* notificationManager() override; | 136 blink::WebNotificationManager* notificationManager() override; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 scoped_refptr<PushDispatcher> push_dispatcher_; | 175 scoped_refptr<PushDispatcher> push_dispatcher_; |
| 178 scoped_ptr<PermissionDispatcher> permission_client_; | 176 scoped_ptr<PermissionDispatcher> permission_client_; |
| 179 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_; | 177 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_; |
| 180 | 178 |
| 181 scheduler::WebThreadBase* compositor_thread_; | 179 scheduler::WebThreadBase* compositor_thread_; |
| 182 }; | 180 }; |
| 183 | 181 |
| 184 } // namespace content | 182 } // namespace content |
| 185 | 183 |
| 186 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ | 184 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |