Chromium Code Reviews| 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..469d0a3cef31cc6442124481cdb61db1be0286f2 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; |
| @@ -571,6 +572,10 @@ class CONTENT_EXPORT ContentBrowserClient { |
| // Return NULL to use the default one for the platform to be created. |
| 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. |
|
Avi (use Gerrit)
2013/11/22 16:08:48
Please add the following line to this comment bloc
ostap
2013/11/22 17:24:19
Done.
|
| + 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. |