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

Unified Diff: chrome/browser/web_resource/web_resource_service.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/browser/web_resource/promo_resource_service.h ('k') | chrome/common/extensions/extension.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/web_resource/web_resource_service.h
===================================================================
--- chrome/browser/web_resource/web_resource_service.h (revision 92173)
+++ chrome/browser/web_resource/web_resource_service.h (working copy)
@@ -11,10 +11,13 @@
#include "content/browser/utility_process_host.h"
#include "content/common/content_notification_types.h"
-class DictionaryValue;
class PrefService;
class ResourceDispatcherHost;
+namespace base {
+class DictionaryValue;
+}
+
// A WebResourceService fetches data from a web resource server and store
// locally as user preference.
class WebResourceService : public UtilityProcessHost::Client {
@@ -40,7 +43,7 @@
protected:
virtual ~WebResourceService();
- virtual void Unpack(const DictionaryValue& parsed_json) = 0;
+ virtual void Unpack(const base::DictionaryValue& parsed_json) = 0;
// If delay_ms is positive, schedule notification with the delay.
// If delay_ms is 0, notify immediately by calling WebResourceStateChange().
@@ -61,7 +64,7 @@
void EndFetch();
// Puts parsed json data in the right places, and writes to prefs file.
- void OnWebResourceUnpacked(const DictionaryValue& parsed_json);
+ void OnWebResourceUnpacked(const base::DictionaryValue& parsed_json);
// Notify listeners that the state of a web resource has changed.
void WebResourceStateChange();
« no previous file with comments | « chrome/browser/web_resource/promo_resource_service.h ('k') | chrome/common/extensions/extension.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698