| 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 eddc3410e4393d2952c2013707a934bbfefc4efa..34b89116a8fd722c0738ed0dfbbb212b8357249f 100644
|
| --- a/chrome/browser/extensions/extension_managed_mode_api.h
|
| +++ b/chrome/browser/extensions/extension_managed_mode_api.h
|
| @@ -13,16 +13,24 @@
|
|
|
| class GetManagedModeFunction : public SyncExtensionFunction {
|
| public:
|
| + DECLARE_EXTENSION_FUNCTION_NAME("managedModePrivate.get")
|
| +
|
| + protected:
|
| virtual ~GetManagedModeFunction();
|
| +
|
| + // ExtensionFunction:
|
| virtual bool RunImpl() OVERRIDE;
|
| - DECLARE_EXTENSION_FUNCTION_NAME("managedModePrivate.get")
|
| };
|
|
|
| class EnterManagedModeFunction : public AsyncExtensionFunction {
|
| public:
|
| + DECLARE_EXTENSION_FUNCTION_NAME("managedModePrivate.enter")
|
| +
|
| + protected:
|
| virtual ~EnterManagedModeFunction();
|
| +
|
| + // ExtensionFunction:
|
| virtual bool RunImpl() OVERRIDE;
|
| - DECLARE_EXTENSION_FUNCTION_NAME("managedModePrivate.enter")
|
|
|
| private:
|
| // Called when we have either successfully entered managed mode or failed.
|
|
|