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_; |