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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 virtual blink::WebString queryLocalizedString( | 124 virtual blink::WebString queryLocalizedString( |
125 blink::WebLocalizedString::Name name, | 125 blink::WebLocalizedString::Name name, |
126 int numeric_value); | 126 int numeric_value); |
127 blink::WebString queryLocalizedString(blink::WebLocalizedString::Name name, | 127 blink::WebString queryLocalizedString(blink::WebLocalizedString::Name name, |
128 const blink::WebString& value) override; | 128 const blink::WebString& value) override; |
129 blink::WebString queryLocalizedString( | 129 blink::WebString queryLocalizedString( |
130 blink::WebLocalizedString::Name name, | 130 blink::WebLocalizedString::Name name, |
131 const blink::WebString& value1, | 131 const blink::WebString& value1, |
132 const blink::WebString& value2) override; | 132 const blink::WebString& value2) override; |
133 void suddenTerminationChanged(bool enabled) override {} | 133 void suddenTerminationChanged(bool enabled) override {} |
134 double currentTimeSeconds() override; | |
135 double monotonicallyIncreasingTimeSeconds() override; | |
136 blink::WebThread* compositorThread() const override; | 134 blink::WebThread* compositorThread() const override; |
137 blink::WebGestureCurve* createFlingAnimationCurve( | 135 blink::WebGestureCurve* createFlingAnimationCurve( |
138 blink::WebGestureDevice device_source, | 136 blink::WebGestureDevice device_source, |
139 const blink::WebFloatPoint& velocity, | 137 const blink::WebFloatPoint& velocity, |
140 const blink::WebSize& cumulative_scroll) override; | 138 const blink::WebSize& cumulative_scroll) override; |
141 void didStartWorkerThread() override; | 139 void didStartWorkerThread() override; |
142 void willStopWorkerThread() override; | 140 void willStopWorkerThread() override; |
143 blink::WebCrypto* crypto() override; | 141 blink::WebCrypto* crypto() override; |
144 blink::WebGeofencingProvider* geofencingProvider() override; | 142 blink::WebGeofencingProvider* geofencingProvider() override; |
145 blink::WebNotificationManager* notificationManager() override; | 143 blink::WebNotificationManager* notificationManager() override; |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_; | 185 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_; |
188 | 186 |
189 TrialTokenValidator trial_token_validator_; | 187 TrialTokenValidator trial_token_validator_; |
190 | 188 |
191 scheduler::WebThreadBase* compositor_thread_; | 189 scheduler::WebThreadBase* compositor_thread_; |
192 }; | 190 }; |
193 | 191 |
194 } // namespace content | 192 } // namespace content |
195 | 193 |
196 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ | 194 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ |
OLD | NEW |