summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_module.cc
diff options
context:
space:
mode:
authorcmp@chromium.org <cmp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-06 13:11:28 +0000
committercmp@chromium.org <cmp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-06 13:11:28 +0000
commitfc7641553e87f708788ef0c1e944d971f86a16bb (patch)
treed25ad7c821e30dafc5887b740e5e7dffaea3daa6 /chrome/browser/extensions/extension_module.cc
parent40bbe59d2dd822e8448047f25c0349bb5c44d938 (diff)
downloadchromium_src-fc7641553e87f708788ef0c1e944d971f86a16bb.zip
chromium_src-fc7641553e87f708788ef0c1e944d971f86a16bb.tar.gz
chromium_src-fc7641553e87f708788ef0c1e944d971f86a16bb.tar.bz2
Revert 80539 - Refactor ExtensionService/ExtensionServiceInterface to be more testableIn particular:- Add various status accessors to ExtensionServiceInterface (e.g., IsExtensionEnabled())- Convert IsIncognitoEnabled() to take an ID instead of an Extension*.- Add CheckForUpdates() to ExtensionServiceInterface.- Remove various unneeded accessors from ExtensionServiceInterface.Rewrite some sync utility functions to take advantage of the newinterface (although it will be rewritten more in a future CL).BUG=77995TEST=Review URL: http://codereview.chromium.org/6720042
TBR=akalin@chromium.org Review URL: http://codereview.chromium.org/6804010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80613 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_module.cc')
-rw-r--r--chrome/browser/extensions/extension_module.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/extension_module.cc b/chrome/browser/extensions/extension_module.cc
index a1c884b..bb13067 100644
--- a/chrome/browser/extensions/extension_module.cc
+++ b/chrome/browser/extensions/extension_module.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 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.
@@ -27,7 +27,7 @@ bool IsAllowedIncognitoAccessFunction::RunImpl() {
const Extension* extension = GetExtension();
result_.reset(Value::CreateBooleanValue(
- ext_service->IsIncognitoEnabled(extension->id())));
+ ext_service->IsIncognitoEnabled(extension)));
return true;
}