| Index: chrome/browser/ui/webui/inspect_ui.h
|
| diff --git a/chrome/browser/ui/webui/inspect_ui.h b/chrome/browser/ui/webui/inspect_ui.h
|
| index 8f5b4d90667f5c31131a57c657d5108049116a74..9647b76d7ca2e6360707e57c06f84c3af58f48c9 100644
|
| --- a/chrome/browser/ui/webui/inspect_ui.h
|
| +++ b/chrome/browser/ui/webui/inspect_ui.h
|
| @@ -24,7 +24,10 @@ class InspectUI : public content::WebUIController,
|
| virtual ~InspectUI();
|
|
|
| void InitUI();
|
| - void InspectRemotePage(const std::string& id);
|
| + void InspectRemotePage(const std::string& page_id);
|
| + void CloseRemotePage(const std::string& page_id);
|
| + void ReloadRemotePage(const std::string& page_id);
|
| + void OpenRemotePage(const std::string& browser_id, const std::string& url);
|
|
|
| private:
|
| class WorkerCreationDestructionListener;
|
| @@ -60,6 +63,10 @@ class InspectUI : public content::WebUIController,
|
| RemotePages;
|
| RemotePages remote_pages_;
|
|
|
| + typedef std::map<std::string,
|
| + scoped_refptr<DevToolsAdbBridge::RemoteBrowser> > RemoteBrowsers;
|
| + RemoteBrowsers remote_browsers_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(InspectUI);
|
| };
|
|
|
|
|