| Index: chrome/browser/automation/automation_util.h
|
| ===================================================================
|
| --- chrome/browser/automation/automation_util.h (revision 92173)
|
| +++ chrome/browser/automation/automation_util.h (working copy)
|
| @@ -12,10 +12,13 @@
|
|
|
| class AutomationProvider;
|
| class Browser;
|
| -class DictionaryValue;
|
| class GURL;
|
| class TabContents;
|
|
|
| +namespace base {
|
| +class DictionaryValue;
|
| +}
|
| +
|
| namespace IPC {
|
| class Message;
|
| }
|
| @@ -54,19 +57,19 @@
|
| // Gets the cookies for the given URL. Uses the JSON interface.
|
| // See |TestingAutomationProvider| for example input.
|
| void GetCookiesJSON(AutomationProvider* provider,
|
| - DictionaryValue* args,
|
| + base::DictionaryValue* args,
|
| IPC::Message* reply_message);
|
|
|
| // Deletes the cookie with the given name for the URL. Uses the JSON interface.
|
| // See |TestingAutomationProvider| for example input.
|
| void DeleteCookieJSON(AutomationProvider* provider,
|
| - DictionaryValue* args,
|
| + base::DictionaryValue* args,
|
| IPC::Message* reply_message);
|
|
|
| // Sets a cookie for the given URL. Uses the JSON interface.
|
| // See |TestingAutomationProvider| for example input.
|
| void SetCookieJSON(AutomationProvider* provider,
|
| - DictionaryValue* args,
|
| + base::DictionaryValue* args,
|
| IPC::Message* reply_message);
|
|
|
| } // namespace automation_util
|
|
|