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

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: rebase and add region_id sanity check Created 6 years, 2 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 65d423936650595be46029d32ab9294e55aedc78..d82d8f41cf0905604f2009750be5d264166a609c 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) {
@@ -153,6 +154,7 @@ class CONTENT_EXPORT BlinkPlatformImpl
virtual void didStopWorkerRunLoop(
const blink::WebWorkerRunLoop& runLoop) OVERRIDE;
virtual blink::WebCrypto* crypto() OVERRIDE;
+ virtual blink::WebGeofencingProvider* geofencingProvider() OVERRIDE;
void SuspendSharedTimer();
void ResumeSharedTimer();
@@ -176,6 +178,7 @@ class CONTENT_EXPORT BlinkPlatformImpl
int shared_timer_suspended_; // counter
base::ThreadLocalStorage::Slot current_thread_slot_;
WebCryptoImpl web_crypto_;
+ scoped_ptr<WebGeofencingProviderImpl> geofencing_provider_;
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698