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

Unified Diff: chrome/common/web_resource/web_resource_unpacker.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/common/web_apps.h ('k') | chrome/installer/setup/install.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/web_resource/web_resource_unpacker.h
===================================================================
--- chrome/common/web_resource/web_resource_unpacker.h (revision 92173)
+++ chrome/common/web_resource/web_resource_unpacker.h (working copy)
@@ -18,7 +18,9 @@
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
+namespace base {
class DictionaryValue;
+}
class WebResourceUnpacker {
public:
@@ -36,7 +38,7 @@
const std::string& error_message() { return error_message_; }
// Gets data which has been parsed by Run().
- DictionaryValue* parsed_json() {
+ base::DictionaryValue* parsed_json() {
return parsed_json_.get();
}
@@ -45,7 +47,7 @@
std::string resource_data_;
// Holds the result of JSON parsing of resource_data_.
- scoped_ptr<DictionaryValue> parsed_json_;
+ scoped_ptr<base::DictionaryValue> parsed_json_;
// Holds the last error message produced by Run().
std::string error_message_;
« no previous file with comments | « chrome/common/web_apps.h ('k') | chrome/installer/setup/install.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698