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

Unified Diff: content/public/browser/content_browser_client.h

Issue 23496051: Make VibrationMessageFilter available to other platforms. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased and added contact info for override APIs. Created 7 years, 1 month 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/public/browser/content_browser_client.h
diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h
index e862ca97d371680d01b6f429a9e5fbd6cc3b5ac8..0a4928cebcee0768947ea0c5c3b25fa41e1c3556 100644
--- a/content/public/browser/content_browser_client.h
+++ b/content/public/browser/content_browser_client.h
@@ -94,6 +94,7 @@ class RenderViewHostDelegateView;
class ResourceContext;
class SiteInstance;
class SpeechRecognitionManagerDelegate;
+class VibrationProvider;
class WebContents;
class WebContentsViewDelegate;
class WebContentsViewPort;
@@ -569,8 +570,18 @@ class CONTENT_EXPORT ContentBrowserClient {
// Allows an embedder to return its own LocationProvider implementation.
// Return NULL to use the default one for the platform to be created.
+ // FYI: Used by an external project; please don't remove.
+ // Contact Viatcheslav Ostapenko at sl.ostapenko@samsung.com for more
+ // information.
virtual LocationProvider* OverrideSystemLocationProvider();
+ // Allows an embedder to return its own VibrationProvider implementation.
+ // Return NULL to use the default one for the platform to be created.
+ // FYI: Used by an external project; please don't remove.
+ // Contact Viatcheslav Ostapenko at sl.ostapenko@samsung.com for more
+ // information.
+ virtual VibrationProvider* OverrideVibrationProvider();
+
#if defined(OS_POSIX) && !defined(OS_MACOSX)
// Populates |mappings| with all files that need to be mapped before launching
// a child process.

Powered by Google App Engine
This is Rietveld 408576698