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

Unified Diff: chrome/browser/extensions/extension_preference_api.h

Issue 6992022: Move Proxy Settings API out of experimental (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed remainder of merge conflict. Fixes unit test Created 9 years, 7 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 | « no previous file | chrome/browser/extensions/extension_preference_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_preference_api.h
diff --git a/chrome/browser/extensions/extension_preference_api.h b/chrome/browser/extensions/extension_preference_api.h
index 2ff2c1bec0ebf47dc223340d4f93d195bcbb8f60..06897ce78d9f5864d62e52221958860e9337d5a3 100644
--- a/chrome/browser/extensions/extension_preference_api.h
+++ b/chrome/browser/extensions/extension_preference_api.h
@@ -66,21 +66,21 @@ class GetPreferenceFunction : public SyncExtensionFunction {
public:
virtual ~GetPreferenceFunction();
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.preferences.get")
+ DECLARE_EXTENSION_FUNCTION_NAME("preferences.get")
};
class SetPreferenceFunction : public SyncExtensionFunction {
public:
virtual ~SetPreferenceFunction();
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.preferences.set")
+ DECLARE_EXTENSION_FUNCTION_NAME("preferences.set")
};
class ClearPreferenceFunction : public SyncExtensionFunction {
public:
virtual ~ClearPreferenceFunction();
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.preferences.clear")
+ DECLARE_EXTENSION_FUNCTION_NAME("preferences.clear")
};
#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFERENCE_API_H__
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_preference_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698