summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_ui_unittest.cc
diff options
context:
space:
mode:
authorkalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-23 17:21:42 +0000
committerkalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-23 17:21:42 +0000
commit363f5272cc19dc56e7711d1ef0c3a0c0d52072ca (patch)
treea4361820bcd5d36e014fd595eb1c2de0d3825aac /chrome/browser/extensions/extension_ui_unittest.cc
parent693ed9d8099c907890474e0ce5728ce1aa0906b1 (diff)
downloadchromium_src-363f5272cc19dc56e7711d1ef0c3a0c0d52072ca.zip
chromium_src-363f5272cc19dc56e7711d1ef0c3a0c0d52072ca.tar.gz
chromium_src-363f5272cc19dc56e7711d1ef0c3a0c0d52072ca.tar.bz2
Revert 195811 "Explicitly construct/destruct UserManager and dep..."
> Explicitly construct/destruct UserManager and dependencies in tests > > The ScopedTestUserManager initializes and subsequently tears down the > UserManager singleton only if it has not been initialized already. This > allows ScopedTestUserManagers to be nested but also means that it is > never clear which ScopedTestUserManager actually did end up initializing > the singleton. The same goes for ScopedTestCrosSettings. > > This CL makes the initialization and teardown explicit. The helper classes > now explicitly manage the initialization and teardown of their respective > singletons and cannot be nested anymore. > > BUG=None > > For tests that need to instantiate a UserManager: > TBR=sky,rkc,aa,thestig,asvitkine,davemoore,kinuko,pkotwicz,davemoore,akalin > > Review URL: https://codereview.chromium.org/14192040 TBR=bartfab@google.com Review URL: https://codereview.chromium.org/14436007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@195821 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_ui_unittest.cc')
-rw-r--r--chrome/browser/extensions/extension_ui_unittest.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/chrome/browser/extensions/extension_ui_unittest.cc b/chrome/browser/extensions/extension_ui_unittest.cc
index 8777981..b91cc7f 100644
--- a/chrome/browser/extensions/extension_ui_unittest.cc
+++ b/chrome/browser/extensions/extension_ui_unittest.cc
@@ -20,10 +20,6 @@
#include "extensions/common/constants.h"
#include "testing/gtest/include/gtest/gtest.h"
-#if defined(OS_CHROMEOS)
-#include "chrome/browser/chromeos/login/user_manager.h"
-#endif
-
using extensions::Extension;
using extensions::Manifest;
@@ -130,10 +126,6 @@ class ExtensionUITest : public extensions::ExtensionTest {
ExtensionService* extension_service_;
extensions::ManagementPolicy* management_policy_;
scoped_ptr<ExtensionSettingsHandler> handler_;
-
-#if defined OS_CHROMEOS
- chromeos::ScopedTestUserManager test_user_manager_;
-#endif
};
TEST_F(ExtensionUITest, GenerateExtensionsJSONData) {