summaryrefslogtreecommitdiffstats
path: root/chrome/browser/automation/automation_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/automation/automation_util.h')
-rw-r--r--chrome/browser/automation/automation_util.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/chrome/browser/automation/automation_util.h b/chrome/browser/automation/automation_util.h
index cda8a5f..b15cf2a 100644
--- a/chrome/browser/automation/automation_util.h
+++ b/chrome/browser/automation/automation_util.h
@@ -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 @@ void DeleteCookie(const GURL& url,
// 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