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

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

Issue 82773002: Move some dependencies of ExtensionService down to extensions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Presubmit check fixed Created 7 years, 1 month 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
« no previous file with comments | « chrome/browser/extensions/test_management_policy.h ('k') | chrome/browser/extensions/webstore_installer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/test_management_policy.cc
diff --git a/chrome/browser/extensions/test_management_policy.cc b/chrome/browser/extensions/test_management_policy.cc
deleted file mode 100644
index c1c69ac856bc6413c21d733ea5eba25d8e8d1482..0000000000000000000000000000000000000000
--- a/chrome/browser/extensions/test_management_policy.cc
+++ /dev/null
@@ -1,78 +0,0 @@
-// 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/strings/utf_string_conversions.h"
-
-namespace extensions {
-
-TestManagementPolicyProvider::TestManagementPolicyProvider()
- : may_load_(true),
- may_modify_status_(true),
- must_remain_enabled_(false),
- must_remain_disabled_(false),
- disable_reason_(Extension::DISABLE_NONE) {
- 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;
- must_remain_disabled_ = (prohibited_actions & MUST_REMAIN_DISABLED) != 0;
-}
-
-void TestManagementPolicyProvider::SetDisableReason(
- Extension::DisableReason reason) {
- disable_reason_ = reason;
-}
-
-std::string TestManagementPolicyProvider::GetDebugPolicyProviderName() const {
- return "the test management policy provider";
-}
-
-bool TestManagementPolicyProvider::UserMayLoad(const Extension* extension,
- string16* error) const {
- if (error && !may_load_)
- *error = error_message_;
- return may_load_;
-}
-
-bool TestManagementPolicyProvider::UserMayModifySettings(
- 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_;
-}
-
-bool TestManagementPolicyProvider::MustRemainDisabled(
- const Extension* extension,
- Extension::DisableReason* reason,
- string16* error) const {
- if (must_remain_disabled_) {
- if (error)
- *error = error_message_;
- if (reason)
- *reason = disable_reason_;
- }
- return must_remain_disabled_;
-}
-
-
-} // namespace extensions
« no previous file with comments | « chrome/browser/extensions/test_management_policy.h ('k') | chrome/browser/extensions/webstore_installer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698