| Index: chrome/browser/extensions/extension_debugger_api.h
|
| ===================================================================
|
| --- chrome/browser/extensions/extension_debugger_api.h (revision 92173)
|
| +++ chrome/browser/extensions/extension_debugger_api.h (working copy)
|
| @@ -15,10 +15,13 @@
|
|
|
| // Base debugger function.
|
|
|
| -class DictionaryValue;
|
| class ExtensionDevToolsClientHost;
|
| class TabContents;
|
|
|
| +namespace base {
|
| +class DictionaryValue;
|
| +}
|
| +
|
| class DebuggerFunction : public AsyncExtensionFunction {
|
| protected:
|
| DebuggerFunction();
|
| @@ -56,7 +59,7 @@
|
| virtual ~SendRequestDebuggerFunction();
|
| virtual bool RunImpl();
|
|
|
| - void SendResponseBody(DictionaryValue* dictionary);
|
| + void SendResponseBody(base::DictionaryValue* dictionary);
|
| DECLARE_EXTENSION_FUNCTION_NAME("experimental.debugger.sendRequest")
|
| };
|
|
|
|
|