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

Unified Diff: chrome/common/extensions/permissions/permission_set_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/common/extensions/permissions/permission_set_unittest.cc
diff --git a/chrome/common/extensions/permissions/permission_set_unittest.cc b/chrome/common/extensions/permissions/permission_set_unittest.cc
index 5070f17e7c2a3aae91affe42dae30cffd5277f87..04086eaeb86fad31ac2fcbc6a0cb01eef1622a9c 100644
--- a/chrome/common/extensions/permissions/permission_set_unittest.cc
+++ b/chrome/common/extensions/permissions/permission_set_unittest.cc
@@ -1222,7 +1222,7 @@ TEST(PermissionsTest, GetWarningMessages_DeclarativeWebRequest) {
// Until Declarative Web Request is in stable, let's make sure it is enabled
// on the current channel.
- ScopedCurrentChannel sc(chrome::VersionInfo::CHANNEL_CANARY);
+ ScopedCurrentChannel sc(version_info::Channel::CANARY);
// First verify that declarativeWebRequest produces a message when host
// permissions do not cover all hosts.
@@ -1260,7 +1260,7 @@ TEST(PermissionsTest, GetWarningMessages_Serial) {
}
TEST(PermissionsTest, GetWarningMessages_Socket_AnyHost) {
- ScopedCurrentChannel channel(chrome::VersionInfo::CHANNEL_DEV);
+ ScopedCurrentChannel channel(version_info::Channel::DEV);
scoped_refptr<Extension> extension =
LoadManifest("permissions", "socket_any_host.json");
@@ -1273,7 +1273,7 @@ TEST(PermissionsTest, GetWarningMessages_Socket_AnyHost) {
}
TEST(PermissionsTest, GetWarningMessages_Socket_OneDomainTwoHostnames) {
- ScopedCurrentChannel channel(chrome::VersionInfo::CHANNEL_DEV);
+ ScopedCurrentChannel channel(version_info::Channel::DEV);
scoped_refptr<Extension> extension =
LoadManifest("permissions", "socket_one_domain_two_hostnames.json");
@@ -1295,7 +1295,7 @@ TEST(PermissionsTest, GetWarningMessages_Socket_OneDomainTwoHostnames) {
}
TEST(PermissionsTest, GetWarningMessages_Socket_TwoDomainsOneHostname) {
- ScopedCurrentChannel channel(chrome::VersionInfo::CHANNEL_DEV);
+ ScopedCurrentChannel channel(version_info::Channel::DEV);
scoped_refptr<Extension> extension =
LoadManifest("permissions", "socket_two_domains_one_hostname.json");
« no previous file with comments | « chrome/common/extensions/manifest_tests/extension_manifests_background_unittest.cc ('k') | chrome/common/gcm_desktop_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698