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

Unified Diff: chrome/browser/extensions/api/test/test_api.h

Issue 16915006: Convert most of extensions and some other random stuff to using the base namespace for Values. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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/api/test/test_api.h
diff --git a/chrome/browser/extensions/api/test/test_api.h b/chrome/browser/extensions/api/test/test_api.h
index 5c0df7d0609831040087d8093630696b849362a7..fa0c2ab70a689dd3dfd24ebe5de85ba580da6a1b 100644
--- a/chrome/browser/extensions/api/test/test_api.h
+++ b/chrome/browser/extensions/api/test/test_api.h
@@ -98,7 +98,7 @@ class TestGetConfigFunction : public SyncExtensionFunction {
// Set the dictionary returned by chrome.test.getConfig().
// Does not take ownership of |value|.
- static void set_test_config_state(DictionaryValue* value);
+ static void set_test_config_state(base::DictionaryValue* value);
protected:
// Tests that set configuration state do so by calling
@@ -109,11 +109,11 @@ class TestGetConfigFunction : public SyncExtensionFunction {
public:
static TestConfigState* GetInstance();
- void set_config_state(DictionaryValue* config_state) {
+ void set_config_state(base::DictionaryValue* config_state) {
config_state_ = config_state;
}
- const DictionaryValue* config_state() {
+ const base::DictionaryValue* config_state() {
return config_state_;
}
@@ -121,7 +121,7 @@ class TestGetConfigFunction : public SyncExtensionFunction {
friend struct DefaultSingletonTraits<TestConfigState>;
TestConfigState();
- DictionaryValue* config_state_;
+ base::DictionaryValue* config_state_;
DISALLOW_COPY_AND_ASSIGN(TestConfigState);
};

Powered by Google App Engine
This is Rietveld 408576698