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

Unified Diff: chrome/browser/extensions/api/instance_id/instance_id_apitest.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/api/instance_id/instance_id_apitest.cc
diff --git a/chrome/browser/extensions/api/instance_id/instance_id_apitest.cc b/chrome/browser/extensions/api/instance_id/instance_id_apitest.cc
index bc32d8111bd1a547631cbdd1e9d0ab7319615462..0122151904fa7c21dcdd4662bd0cc837d73b2a9c 100644
--- a/chrome/browser/extensions/api/instance_id/instance_id_apitest.cc
+++ b/chrome/browser/extensions/api/instance_id/instance_id_apitest.cc
@@ -48,7 +48,7 @@ class InstanceIDApiTest : public ExtensionApiTest {
};
InstanceIDApiTest::InstanceIDApiTest()
- : current_channel_(chrome::VersionInfo::CHANNEL_DEV) {
+ : current_channel_(version_info::Channel::DEV) {
}
void InstanceIDApiTest::SetUpOnMainThread() {
@@ -101,13 +101,13 @@ IN_PROC_BROWSER_TEST_F(InstanceIDApiTest, Incognito) {
IN_PROC_BROWSER_TEST_F(InstanceIDApiTest, BetaChannel) {
extensions::ScopedCurrentChannel current_channel_override(
- chrome::VersionInfo::CHANNEL_BETA);
+ version_info::Channel::BETA);
ASSERT_TRUE(RunExtensionTest("instance_id/channel"));
}
IN_PROC_BROWSER_TEST_F(InstanceIDApiTest, StableChannel) {
extensions::ScopedCurrentChannel current_channel_override(
- chrome::VersionInfo::CHANNEL_STABLE);
+ version_info::Channel::STABLE);
ASSERT_TRUE(RunExtensionTest("instance_id/channel"));
}

Powered by Google App Engine
This is Rietveld 408576698