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

Unified Diff: chrome/browser/extensions/test_management_policy.cc

Issue 10382149: Refactor the various ways to control what users can do to extensions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 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/test_management_policy.cc
===================================================================
--- chrome/browser/extensions/test_management_policy.cc (revision 0)
+++ chrome/browser/extensions/test_management_policy.cc (revision 0)
@@ -0,0 +1,55 @@
+// 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.
+
+#include "chrome/browser/extensions/test_management_policy.h"
+
+#include "base/utf_string_conversions.h"
+
+namespace extensions {
+TestManagementPolicyProvider::TestManagementPolicyProvider()
+ : may_load_(true),
+ may_modify_status_(true),
+ must_remain_enabled_(false) {
+ error_message_ = UTF8ToUTF16(expected_error());
+}
+
+TestManagementPolicyProvider::TestManagementPolicyProvider(
+ int prohibited_actions) {
+ SetProhibitedActions(prohibited_actions);
+ error_message_ = UTF8ToUTF16(expected_error());
+}
+
+void TestManagementPolicyProvider::SetProhibitedActions(
+ int prohibited_actions) {
+ may_load_ = (prohibited_actions & PROHIBIT_LOAD) == 0;
+ may_modify_status_ = (prohibited_actions & PROHIBIT_MODIFY_STATUS) == 0;
+ must_remain_enabled_ = (prohibited_actions & MUST_REMAIN_ENABLED) != 0;
+}
+
+std::string TestManagementPolicyProvider::PolicyProviderName() const {
+ return "the test management policy provider";
+}
+
+bool TestManagementPolicyProvider::UserMayLoad(const Extension* extension,
+ Extension::Location location,
+ string16* error) const {
+ if (error && !may_load_)
+ *error = error_message_;
+ return may_load_;
+}
+
+bool TestManagementPolicyProvider::UserMayModifyStatus(
+ const Extension* extension, string16* error) const {
+ if (error && !may_modify_status_)
+ *error = error_message_;
+ return may_modify_status_;
+}
+
+bool TestManagementPolicyProvider::MustRemainEnabled(const Extension* extension,
+ string16* error) const {
+ if (error && must_remain_enabled_)
+ *error = error_message_;
+ return must_remain_enabled_;
+}
+} // namespace
Property changes on: chrome\browser\extensions\test_management_policy.cc
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698