| Index: chrome/test/webdriver/dispatch.h
|
| ===================================================================
|
| --- chrome/test/webdriver/dispatch.h (revision 91508)
|
| +++ 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,
|
|
|