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

Unified Diff: chrome/test/webdriver/dispatch.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/webdriver/commands/webelement_commands.h ('k') | chrome/test/webdriver/session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/dispatch.h
===================================================================
--- chrome/test/webdriver/dispatch.h (revision 92173)
+++ chrome/test/webdriver/dispatch.h (working copy)
@@ -13,9 +13,8 @@
#include "chrome/test/webdriver/commands/response.h"
#include "third_party/mongoose/mongoose.h"
-class DictionaryValue;
-
namespace base {
+class DictionaryValue;
class WaitableEvent;
}
@@ -43,7 +42,7 @@
bool ParseRequestInfo(const struct mg_request_info* const request_info,
std::string* method,
std::vector<std::string>* path_segments,
- DictionaryValue** parameters,
+ base::DictionaryValue** parameters,
Response* const response);
// Allows the bulk of the implementation of |Dispatch| to be moved out of this
@@ -62,7 +61,7 @@
void* user_data) {
std::string method;
std::vector<std::string> path_segments;
- DictionaryValue* parameters = NULL;
+ base::DictionaryValue* parameters = NULL;
Response response;
if (internal::ParseRequestInfo(request_info,
&method,
« no previous file with comments | « chrome/test/webdriver/commands/webelement_commands.h ('k') | chrome/test/webdriver/session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698