Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Unified Diff: chrome/test/webdriver/automation.h

Issue 7259019: Move base/values.h into the base namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/values_test_util.h ('k') | chrome/test/webdriver/commands/alert_commands.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/automation.h
===================================================================
--- chrome/test/webdriver/automation.h (revision 92173)
+++ chrome/test/webdriver/automation.h (working copy)
@@ -18,13 +18,16 @@
class AutomationProxy;
class CommandLine;
-class DictionaryValue;
class FilePath;
class GURL;
-class ListValue;
class ProxyLauncher;
struct WebKeyEvent;
+namespace base {
+class DictionaryValue;
+class ListValue;
+}
+
namespace gfx {
class Point;
}
@@ -92,7 +95,9 @@
void GoBack(int tab_id, Error** error);
void Reload(int tab_id, Error** error);
- void GetCookies(const std::string& url, ListValue** cookies, Error** error);
+ void GetCookies(const std::string& url,
+ base::ListValue** cookies,
+ Error** error);
void GetCookiesDeprecated(
int tab_id, const GURL& gurl, std::string* cookies, bool* success);
void DeleteCookie(const std::string& url,
@@ -102,8 +107,9 @@
const GURL& gurl,
const std::string& cookie_name,
bool* success);
- void SetCookie(
- const std::string& url, DictionaryValue* cookie_dict, Error** error);
+ void SetCookie(const std::string& url,
+ base::DictionaryValue* cookie_dict,
+ Error** error);
void SetCookieDeprecated(
int tab_id, const GURL& gurl, const std::string& cookie, bool* success);
« no previous file with comments | « chrome/test/values_test_util.h ('k') | chrome/test/webdriver/commands/alert_commands.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698