Chromium Code Reviews| Index: content/child/blink_platform_impl.h |
| diff --git a/content/child/blink_platform_impl.h b/content/child/blink_platform_impl.h |
| index 797aae1c62041f9d2e751b4dc37b366d7bd1fa01..b893694b1c757b5b5c95eadd7d911331741f03b6 100644 |
| --- a/content/child/blink_platform_impl.h |
| +++ b/content/child/blink_platform_impl.h |
| @@ -34,6 +34,7 @@ class MessageLoop; |
| namespace content { |
| class FlingCurveConfiguration; |
| class WebCryptoImpl; |
| +class WebGeofencingProviderImpl; |
| class CONTENT_EXPORT BlinkPlatformImpl |
| : NON_EXPORTED_BASE(public blink::Platform) { |
| @@ -152,6 +153,7 @@ class CONTENT_EXPORT BlinkPlatformImpl |
| virtual void didStopWorkerRunLoop( |
| const blink::WebWorkerRunLoop& runLoop) OVERRIDE; |
| virtual blink::WebCrypto* crypto() OVERRIDE; |
| + virtual blink::WebGeofencingProvider* geofencingProvider() OVERRIDE; |
| void SetFlingCurveParameters(const std::vector<float>& new_touchpad, |
| const std::vector<float>& new_touchscreen); |
| @@ -179,6 +181,7 @@ class CONTENT_EXPORT BlinkPlatformImpl |
| scoped_ptr<FlingCurveConfiguration> fling_curve_configuration_; |
| base::ThreadLocalStorage::Slot current_thread_slot_; |
| WebCryptoImpl web_crypto_; |
| + scoped_ptr<WebGeofencingProviderImpl> web_geofencing_provider_; |
|
Michael van Ouwerkerk
2014/09/15 13:06:49
Nit: no need to prefix the variable name with 'web
Marijn Kruisselbrink
2014/09/17 00:04:24
Done.
|
| }; |
| } // namespace content |