| Index: chrome/browser/extensions/api/debugger/debugger_api.h
|
| diff --git a/chrome/browser/extensions/api/debugger/debugger_api.h b/chrome/browser/extensions/api/debugger/debugger_api.h
|
| index 89c8f2d35a2d85e4db86644ff98933d0097b92b7..086b4c4927c897113a6574da51411926fa546a14 100644
|
| --- a/chrome/browser/extensions/api/debugger/debugger_api.h
|
| +++ b/chrome/browser/extensions/api/debugger/debugger_api.h
|
| @@ -11,6 +11,9 @@
|
| #include <string>
|
|
|
| #include "chrome/browser/extensions/extension_function.h"
|
| +#include "chrome/common/extensions/api/debugger.h"
|
| +
|
| +using extensions::api::debugger::Debuggee;
|
|
|
| // Base debugger function.
|
|
|
| @@ -30,11 +33,13 @@ class DebuggerFunction : public AsyncExtensionFunction {
|
| DebuggerFunction();
|
| virtual ~DebuggerFunction() {}
|
|
|
| + void FormatErrorMessage(const std::string& format);
|
| +
|
| bool InitWebContents();
|
| bool InitClientHost();
|
|
|
| content::WebContents* contents_;
|
| - int tab_id_;
|
| + Debuggee debuggee_;
|
| ExtensionDevToolsClientHost* client_host_;
|
| };
|
|
|
|
|