| Index: chrome/browser/devtools/devtools_ui_bindings.h
|
| diff --git a/chrome/browser/devtools/devtools_ui_bindings.h b/chrome/browser/devtools/devtools_ui_bindings.h
|
| index 94bf7ba794e870b8f1d1bb0b056fb71009280aa8..7cc2f37f3f412d406079a9ac9965c38f0128390f 100644
|
| --- a/chrome/browser/devtools/devtools_ui_bindings.h
|
| +++ b/chrome/browser/devtools/devtools_ui_bindings.h
|
| @@ -73,8 +73,6 @@ class DevToolsUIBindings : public content::NotificationObserver,
|
| const base::Value* arg1,
|
| const base::Value* arg2,
|
| const base::Value* arg3);
|
| - void DispatchEventOnFrontend(const std::string& event_type,
|
| - const base::Value* event_data);
|
| private:
|
| // content::NotificationObserver:
|
| virtual void Observe(int type,
|
| @@ -128,7 +126,7 @@ class DevToolsUIBindings : public content::NotificationObserver,
|
|
|
| // Forwards discovered devices to frontend.
|
| virtual void PopulateRemoteDevices(const std::string& source,
|
| - scoped_ptr<base::ListValue> targets);
|
| + const base::ListValue& targets);
|
|
|
| void DocumentOnLoadCompletedInMainFrame();
|
|
|
| @@ -157,6 +155,9 @@ class DevToolsUIBindings : public content::NotificationObserver,
|
| void UpdateTheme();
|
| void AddDevToolsExtensionsToClient();
|
|
|
| + void DispatchEventOnFrontend(const std::string& event_type,
|
| + const base::Value& event_data);
|
| +
|
| class FrontendWebContentsObserver;
|
| friend class FrontendWebContentsObserver;
|
| scoped_ptr<FrontendWebContentsObserver> frontend_contents_observer_;
|
|
|