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..3abd2753655da6068c19b235b0299fbc64283c92 |
--- /dev/null |
+++ b/chrome/browser/managed_mode/scoped_extension_elevation.h |
@@ -0,0 +1,28 @@ |
+// 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> |
+ |
+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(std::string extension_id); |
Bernhard Bauer
2013/03/28 15:52:01
Pass |extension_id| by const reference.
Adrian Kuegel
2013/03/28 16:05:53
Done.
|
+ |
+ private: |
+ ManagedUserService* service_; |
+ std::vector<std::string> elevated_extensions_; |
Bernhard Bauer
2013/03/28 15:52:01
DISALLOW_COPY_AND_ASSIGN please!
Adrian Kuegel
2013/03/28 16:05:53
Done.
|
+}; |
+ |
+#endif // CHROME_BROWSER_MANAGED_MODE_SCOPED_EXTENSION_ELEVATION_H_ |