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

Unified Diff: chrome/browser/extensions/extension_content_settings_store.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
Index: chrome/browser/extensions/extension_content_settings_store.h
===================================================================
--- chrome/browser/extensions/extension_content_settings_store.h (revision 92173)
+++ chrome/browser/extensions/extension_content_settings_store.h (working copy)
@@ -20,8 +20,9 @@
#include "chrome/common/content_settings.h"
#include "googleurl/src/gurl.h"
-class DictionaryValue;
+namespace base {
class ListValue;
+}
// This class is the backend for extension-defined content settings. It is used
// by the content_settings::ExtensionProvider to integrate its settings into the
@@ -82,13 +83,13 @@
// Serializes all content settings set by the extension with ID |extension_id|
// and returns them as a ListValue. The caller takes ownership of the returned
// value.
- ListValue* GetSettingsForExtension(const std::string& extension_id,
- ExtensionPrefsScope scope) const;
+ base::ListValue* GetSettingsForExtension(const std::string& extension_id,
+ ExtensionPrefsScope scope) const;
// Deserializes content settings rules from |list| and applies them as set by
// the extension with ID |extension_id|.
void SetExtensionContentSettingsFromList(const std::string& extension_id,
- const ListValue* list,
+ const base::ListValue* list,
ExtensionPrefsScope scope);
// //////////////////////////////////////////////////////////////////////////
« no previous file with comments | « chrome/browser/extensions/extension_browser_actions_api.h ('k') | chrome/browser/extensions/extension_context_menu_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698