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

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

Issue 10141008: Make managedMode extension API component-only. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 8 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_managed_mode_apitest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_managed_mode_api.h
diff --git a/chrome/browser/extensions/extension_managed_mode_api.h b/chrome/browser/extensions/extension_managed_mode_api.h
index 07b9e250227cd97691a1e4e3fae408fe86f45036..eddc3410e4393d2952c2013707a934bbfefc4efa 100644
--- a/chrome/browser/extensions/extension_managed_mode_api.h
+++ b/chrome/browser/extensions/extension_managed_mode_api.h
@@ -15,14 +15,14 @@ class GetManagedModeFunction : public SyncExtensionFunction {
public:
virtual ~GetManagedModeFunction();
virtual bool RunImpl() OVERRIDE;
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.managedMode.get")
+ DECLARE_EXTENSION_FUNCTION_NAME("managedModePrivate.get")
};
class EnterManagedModeFunction : public AsyncExtensionFunction {
public:
virtual ~EnterManagedModeFunction();
virtual bool RunImpl() OVERRIDE;
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.managedMode.enter")
+ DECLARE_EXTENSION_FUNCTION_NAME("managedModePrivate.enter")
private:
// Called when we have either successfully entered managed mode or failed.
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_managed_mode_apitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698