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

Unified Diff: net/test/test_server.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 | « net/spdy/spdy_session_pool.h ('k') | net/url_request/url_request_netlog_params.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/test/test_server.h
===================================================================
--- net/test/test_server.h (revision 92173)
+++ net/test/test_server.h (working copy)
@@ -24,9 +24,12 @@
#endif
class CommandLine;
-class DictionaryValue;
class GURL;
+namespace base {
+class DictionaryValue;
+}
+
namespace net {
class AddressList;
@@ -117,7 +120,7 @@
const FilePath& document_root() const { return document_root_; }
const HostPortPair& host_port_pair() const;
- const DictionaryValue& server_data() const;
+ const base::DictionaryValue& server_data() const;
std::string GetScheme() const;
bool GetAddressList(AddressList* address_list) const WARN_UNUSED_RESULT;
@@ -171,7 +174,7 @@
HostPortPair host_port_pair_;
// Holds the data sent from the server (e.g., port number).
- scoped_ptr<DictionaryValue> server_data_;
+ scoped_ptr<base::DictionaryValue> server_data_;
// Handle of the Python process running the test server.
base::ProcessHandle process_handle_;
« no previous file with comments | « net/spdy/spdy_session_pool.h ('k') | net/url_request/url_request_netlog_params.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698