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

Unified Diff: chrome/browser/managed_mode/scoped_extension_elevation.h

Issue 13119011: Enable WebContents elevation for managed users. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Refactor duplicate code into GetScopedElevation function. Created 7 years, 9 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/managed_mode/scoped_extension_elevation.h
diff --git a/chrome/browser/managed_mode/scoped_extension_elevation.h b/chrome/browser/managed_mode/scoped_extension_elevation.h
new file mode 100644
index 0000000000000000000000000000000000000000..61af6e7701c083d5e74b15831d077c5f11dbaa38
--- /dev/null
+++ b/chrome/browser/managed_mode/scoped_extension_elevation.h
@@ -0,0 +1,35 @@
+// Copyright (c) 2013 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.
+
+#ifndef CHROME_BROWSER_MANAGED_MODE_SCOPED_EXTENSION_ELEVATION_H_
+#define CHROME_BROWSER_MANAGED_MODE_SCOPED_EXTENSION_ELEVATION_H_
+
+#include <string>
+#include <vector>
+
+#include "base/basictypes.h"
+
+class ManagedUserService;
+
+// Used to allow managed users to install extensions if they are currently in
+// elevated state.
+class ScopedExtensionElevation {
+ public:
+ explicit ScopedExtensionElevation(ManagedUserService* service);
+ ~ScopedExtensionElevation();
+
+ // Add elevation for the extension with the id |extension_id|.
+ void AddExtension(const std::string& extension_id);
+
+ private:
+ ManagedUserService* service_;
+
+ // A list of extensions which stay elevated until the destructor of this
+ // class is called.
+ std::vector<std::string> elevated_extensions_;
+
+ DISALLOW_COPY_AND_ASSIGN(ScopedExtensionElevation);
+};
+
+#endif // CHROME_BROWSER_MANAGED_MODE_SCOPED_EXTENSION_ELEVATION_H_

Powered by Google App Engine
This is Rietveld 408576698