| 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/containers/scoped_ptr_hash_map.h" | 9 #include "base/containers/scoped_ptr_hash_map.h" |
| 10 #include "base/threading/thread_local_storage.h" | 10 #include "base/threading/thread_local_storage.h" |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 virtual void suddenTerminationChanged(bool enabled) { } | 155 virtual void suddenTerminationChanged(bool enabled) { } |
| 156 virtual double currentTime(); | 156 virtual double currentTime(); |
| 157 virtual double monotonicallyIncreasingTime(); | 157 virtual double monotonicallyIncreasingTime(); |
| 158 virtual double systemTraceTime(); | 158 virtual double systemTraceTime(); |
| 159 virtual void cryptographicallyRandomValues( | 159 virtual void cryptographicallyRandomValues( |
| 160 unsigned char* buffer, size_t length); | 160 unsigned char* buffer, size_t length); |
| 161 virtual blink::WebGestureCurve* createFlingAnimationCurve( | 161 virtual blink::WebGestureCurve* createFlingAnimationCurve( |
| 162 blink::WebGestureDevice device_source, | 162 blink::WebGestureDevice device_source, |
| 163 const blink::WebFloatPoint& velocity, | 163 const blink::WebFloatPoint& velocity, |
| 164 const blink::WebSize& cumulative_scroll); | 164 const blink::WebSize& cumulative_scroll); |
| 165 |
| 166 virtual blink::WebGestureCurve* createSmoothScrollAnimationCurve( |
| 167 blink::WebGestureDevice device_source, |
| 168 float start_x, |
| 169 float start_y, |
| 170 float dx, |
| 171 float dy, |
| 172 int64_t duration); |
| 173 |
| 165 virtual void didStartWorkerRunLoop(); | 174 virtual void didStartWorkerRunLoop(); |
| 166 virtual void didStopWorkerRunLoop(); | 175 virtual void didStopWorkerRunLoop(); |
| 167 virtual blink::WebCrypto* crypto(); | 176 virtual blink::WebCrypto* crypto(); |
| 168 virtual blink::WebGeofencingProvider* geofencingProvider(); | 177 virtual blink::WebGeofencingProvider* geofencingProvider(); |
| 169 virtual blink::WebNotificationManager* notificationManager(); | 178 virtual blink::WebNotificationManager* notificationManager(); |
| 170 virtual blink::WebPushProvider* pushProvider(); | 179 virtual blink::WebPushProvider* pushProvider(); |
| 171 virtual blink::WebServicePortProvider* createServicePortProvider( | 180 virtual blink::WebServicePortProvider* createServicePortProvider( |
| 172 blink::WebServicePortProviderClient*); | 181 blink::WebServicePortProviderClient*); |
| 173 virtual blink::WebPermissionClient* permissionClient(); | 182 virtual blink::WebPermissionClient* permissionClient(); |
| 174 virtual blink::WebSyncProvider* backgroundSyncProvider(); | 183 virtual blink::WebSyncProvider* backgroundSyncProvider(); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 197 scoped_refptr<ThreadSafeSender> thread_safe_sender_; | 206 scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
| 198 scoped_refptr<NotificationDispatcher> notification_dispatcher_; | 207 scoped_refptr<NotificationDispatcher> notification_dispatcher_; |
| 199 scoped_refptr<PushDispatcher> push_dispatcher_; | 208 scoped_refptr<PushDispatcher> push_dispatcher_; |
| 200 scoped_ptr<PermissionDispatcher> permission_client_; | 209 scoped_ptr<PermissionDispatcher> permission_client_; |
| 201 scoped_ptr<BackgroundSyncProvider> sync_provider_; | 210 scoped_ptr<BackgroundSyncProvider> sync_provider_; |
| 202 }; | 211 }; |
| 203 | 212 |
| 204 } // namespace content | 213 } // namespace content |
| 205 | 214 |
| 206 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ | 215 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |