| Index: chrome/browser/android/tab_android.h
|
| diff --git a/chrome/browser/android/tab_android.h b/chrome/browser/android/tab_android.h
|
| index befaaaf92fdb0d97a836778ebfa721ee2ca51cfd..dea06a60d1c4ac2817d8249ec8d09f9c38b855a1 100644
|
| --- a/chrome/browser/android/tab_android.h
|
| +++ b/chrome/browser/android/tab_android.h
|
| @@ -41,6 +41,7 @@ class TabContentManager;
|
| }
|
|
|
| namespace content {
|
| +class DevToolsAgentHost;
|
| class WebContents;
|
| }
|
|
|
| @@ -252,6 +253,10 @@ class TabAndroid : public CoreTabHelperDelegate,
|
|
|
| bool ShouldEnableEmbeddedMediaExperience() const;
|
|
|
| + scoped_refptr<content::DevToolsAgentHost> GetDevToolsAgentHost();
|
| +
|
| + void SetDevToolsAgentHost(scoped_refptr<content::DevToolsAgentHost> host);
|
| +
|
| // Register the Tab's native methods through JNI.
|
| static bool RegisterTabAndroid(JNIEnv* env);
|
|
|
| @@ -274,7 +279,7 @@ class TabAndroid : public CoreTabHelperDelegate,
|
| std::unique_ptr<content::WebContents> web_contents_;
|
| std::unique_ptr<android::TabWebContentsDelegateAndroid>
|
| web_contents_delegate_;
|
| -
|
| + scoped_refptr<content::DevToolsAgentHost> devtools_host_;
|
| std::unique_ptr<browser_sync::SyncedTabDelegateAndroid> synced_tab_delegate_;
|
|
|
| std::string webapp_manifest_scope_;
|
|
|