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 5f0473ba8649e6312e8392d12c6f9d2e2169aee3..fadfdc4b6179ee767b23843d8848e1ad9a14d850 100644 |
| --- a/content/public/browser/content_browser_client.h |
| +++ b/content/public/browser/content_browser_client.h |
| @@ -88,6 +88,7 @@ class BrowserPluginGuestDelegate; |
| class BrowserPpapiHost; |
| class BrowserURLHandler; |
| class DesktopNotificationDelegate; |
| +class DevToolsManagerDelegate; |
| class ExternalVideoSurfaceContainer; |
| class LocationProvider; |
| class MediaObserver; |
| @@ -634,6 +635,10 @@ class CONTENT_EXPORT ContentBrowserClient { |
| virtual ExternalVideoSurfaceContainer* |
| OverrideCreateExternalVideoSurfaceContainer(WebContents* web_contents); |
| #endif |
| + |
| + // Creates a new DevToolsManagerDelegate. The caller owns the returned value. |
| + // It's valid to return NULL. |
| + virtual DevToolsManagerDelegate* GetDevToolsManagerDelegate(); |
|
jam
2014/05/12 15:01:23
nit: see per above, the ifdef's methods are at the
horo
2014/05/12 16:21:48
Done.
|
| }; |
| } // namespace content |