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. |