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

Unified Diff: chrome/browser/extensions/error_console/error_console_unittest.cc

Issue 1257633002: Componentize VersionInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Convert version_info::Channel to a "class enum" Created 5 years, 5 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/error_console/error_console_unittest.cc
diff --git a/chrome/browser/extensions/error_console/error_console_unittest.cc b/chrome/browser/extensions/error_console/error_console_unittest.cc
index ce686dd1b6500ee615c7942159aef98497cfcba6..b9d1b8b5498b6bb3e013e2cbc6f80650afc21ee4 100644
--- a/chrome/browser/extensions/error_console/error_console_unittest.cc
+++ b/chrome/browser/extensions/error_console/error_console_unittest.cc
@@ -55,8 +55,8 @@ class ErrorConsoleUnitTest : public testing::Test {
TEST_F(ErrorConsoleUnitTest, EnableAndDisableErrorConsole) {
// Start in Dev Channel, without the feature switch.
scoped_ptr<ScopedCurrentChannel> channel_override(
- new ScopedCurrentChannel(chrome::VersionInfo::CHANNEL_DEV));
- ASSERT_EQ(chrome::VersionInfo::CHANNEL_DEV, GetCurrentChannel());
+ new ScopedCurrentChannel(version_info::Channel::DEV));
+ ASSERT_EQ(version_info::Channel::DEV, GetCurrentChannel());
FeatureSwitch::error_console()->SetOverrideValue(
FeatureSwitch::OVERRIDE_DISABLED);
@@ -76,7 +76,7 @@ TEST_F(ErrorConsoleUnitTest, EnableAndDisableErrorConsole) {
// should be disabled.
channel_override.reset();
channel_override.reset(
- new ScopedCurrentChannel(chrome::VersionInfo::CHANNEL_BETA));
+ new ScopedCurrentChannel(version_info::Channel::BETA));
profile_->GetPrefs()->SetBoolean(prefs::kExtensionsUIDeveloperMode, true);
EXPECT_FALSE(error_console_->enabled());
EXPECT_FALSE(error_console_->IsEnabledForChromeExtensionsPage());
« no previous file with comments | « chrome/browser/extensions/error_console/error_console.cc ('k') | chrome/browser/extensions/extension_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698