Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6779)

Unified Diff: content/child/blink_platform_impl.h

Issue 476293002: Pass through geofencing API calls to the browser process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698