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

Unified Diff: chrome/browser/extensions/test_extension_prefs.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/test_extension_prefs.h
===================================================================
--- chrome/browser/extensions/test_extension_prefs.h (revision 92173)
+++ chrome/browser/extensions/test_extension_prefs.h (working copy)
@@ -12,11 +12,14 @@
#include "base/scoped_temp_dir.h"
#include "chrome/common/extensions/extension.h"
-class DictionaryValue;
class ExtensionPrefs;
class ExtensionPrefValueMap;
class PrefService;
+namespace base {
+class DictionaryValue;
+}
+
// This is a test class intended to make it easier to work with ExtensionPrefs
// in tests.
class TestExtensionPrefs {
@@ -39,7 +42,7 @@
// Similar to AddExtension, but takes a dictionary with manifest values.
scoped_refptr<Extension> AddExtensionWithManifest(
- const DictionaryValue& manifest, Extension::Location location);
+ const base::DictionaryValue& manifest, Extension::Location location);
// Similar to AddExtension, this adds a new test Extension. This is useful for
// cases when you don't need the Extension object, but just the id it was

Powered by Google App Engine
This is Rietveld 408576698