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

Unified Diff: chrome/browser/extensions/api/managed_mode_private/managed_mode_private_api.h

Issue 12089062: Move API functions registrations out of ExtensionFunctionRegistry. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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/managed_mode_private/managed_mode_private_api.h
===================================================================
--- chrome/browser/extensions/api/managed_mode_private/managed_mode_private_api.h (revision 0)
+++ chrome/browser/extensions/api/managed_mode_private/managed_mode_private_api.h (revision 0)
@@ -0,0 +1,122 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Defines the Chrome Extensions Managed Mode API relevant classes to realize
+// the API as specified in the extension API JSON.
+
+#ifndef CHROME_BROWSER_EXTENSIONS_API_MANAGED_MODE_PRIVATE_MANAGED_MODE_PRIVATE_API_H_
+#define CHROME_BROWSER_EXTENSIONS_API_MANAGED_MODE_PRIVATE_MANAGED_MODE_PRIVATE_API_H_
+
+#include "base/prefs/public/pref_change_registrar.h"
+#include "chrome/browser/extensions/api/profile_keyed_api_factory.h"
+#include "chrome/browser/extensions/event_router.h"
+#include "chrome/browser/extensions/extension_function.h"
+#include "content/public/browser/notification_observer.h"
+
+class Profile;
+
+namespace extensions {
+
+class ManagedModeEventRouter {
+ public:
+ explicit ManagedModeEventRouter(Profile* profile);
+ virtual ~ManagedModeEventRouter();
+
+ private:
+ void OnInManagedModeChanged();
+
+ PrefChangeRegistrar registrar_;
+ Profile* profile_;
+
+ DISALLOW_COPY_AND_ASSIGN(ManagedModeEventRouter);
+};
+
+class ManagedModePrivateGetFunction : public SyncExtensionFunction {
+ public:
+ DECLARE_EXTENSION_FUNCTION("managedModePrivate.get", MANAGEDMODEPRIVATE_GET)
+
+ protected:
+ virtual ~ManagedModePrivateGetFunction();
+
+ // ExtensionFunction:
+ virtual bool RunImpl() OVERRIDE;
+};
+
+class ManagedModePrivateEnterFunction : public AsyncExtensionFunction {
+ public:
+ DECLARE_EXTENSION_FUNCTION("managedModePrivate.enter",
+ MANAGEDMODEPRIVATE_ENTER)
+
+ protected:
+ virtual ~ManagedModePrivateEnterFunction();
+
+ // ExtensionFunction:
+ virtual bool RunImpl() OVERRIDE;
+
+ private:
+ // Called when we have either successfully entered managed mode or failed.
+ void SendResult(bool success);
+};
+
+
+class ManagedModePrivateGetPolicyFunction : public SyncExtensionFunction {
+ public:
+ DECLARE_EXTENSION_FUNCTION("managedModePrivate.getPolicy",
+ MANAGEDMODEPRIVATE_GETPOLICY)
+
+ protected:
+ virtual ~ManagedModePrivateGetPolicyFunction();
+
+ // ExtensionFunction:
+ virtual bool RunImpl() OVERRIDE;
+};
+
+class ManagedModePrivateSetPolicyFunction : public SyncExtensionFunction {
+ public:
+ DECLARE_EXTENSION_FUNCTION("managedModePrivate.setPolicy",
+ MANAGEDMODEPRIVATE_SETPOLICY)
+
+ protected:
+ virtual ~ManagedModePrivateSetPolicyFunction();
+
+ // ExtensionFunction:
+ virtual bool RunImpl() OVERRIDE;
+};
+
+class ManagedModeAPI : public ProfileKeyedAPI,
+ public extensions::EventRouter::Observer {
+ public:
+ explicit ManagedModeAPI(Profile* profile);
+ virtual ~ManagedModeAPI();
+
+ // ProfileKeyedService implementation.
+ virtual void Shutdown() OVERRIDE;
+
+ // ProfileKeyedAPIFactory implementation.
+ static ProfileKeyedAPIFactory<ManagedModeAPI>* GetFactoryInstance();
+
+ // EventRouter::Observer implementation.
+ virtual void OnListenerAdded(const extensions::EventListenerInfo& details)
+ OVERRIDE;
+
+ private:
+ friend class ProfileKeyedAPIFactory<ManagedModeAPI>;
+
+ Profile* profile_;
+
+ // ProfileKeyedAPI implementation.
+ static const char* service_name() {
+ return "ManagedModeAPI";
+ }
+ static const bool kServiceIsNULLWhileTesting = true;
+
+ // Created lazily upon OnListenerAdded.
+ scoped_ptr<ManagedModeEventRouter> managed_mode_event_router_;
+
+ DISALLOW_COPY_AND_ASSIGN(ManagedModeAPI);
+};
+
+} // namespace extensions
+
+#endif // CHROME_BROWSER_EXTENSIONS_API_MANAGED_MODE_PRIVATE_MANAGED_MODE_PRIVATE_API_H_

Powered by Google App Engine
This is Rietveld 408576698