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..8bfb0dceae412f9f882818d4fb7592c9bcc1aa63 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> geofencing_provider_; |
}; |
} // namespace content |