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

Side by Side Diff: chrome/browser/chrome_content_browser_client_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, 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/chrome_content_browser_client.h" 5 #include "chrome/browser/chrome_content_browser_client.h"
6 6
7 #include <map> 7 #include <map>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/metrics/field_trial.h" 10 #include "base/metrics/field_trial.h"
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 public: 96 public:
97 DisableWebRtcEncryptionFlagTest() 97 DisableWebRtcEncryptionFlagTest()
98 : from_command_line_(base::CommandLine::NO_PROGRAM), 98 : from_command_line_(base::CommandLine::NO_PROGRAM),
99 to_command_line_(base::CommandLine::NO_PROGRAM) {} 99 to_command_line_(base::CommandLine::NO_PROGRAM) {}
100 100
101 protected: 101 protected:
102 void SetUp() override { 102 void SetUp() override {
103 from_command_line_.AppendSwitch(switches::kDisableWebRtcEncryption); 103 from_command_line_.AppendSwitch(switches::kDisableWebRtcEncryption);
104 } 104 }
105 105
106 void MaybeCopyDisableWebRtcEncryptionSwitch(VersionInfo::Channel channel) { 106 void MaybeCopyDisableWebRtcEncryptionSwitch(version_info::Channel channel) {
107 ChromeContentBrowserClient::MaybeCopyDisableWebRtcEncryptionSwitch( 107 ChromeContentBrowserClient::MaybeCopyDisableWebRtcEncryptionSwitch(
108 &to_command_line_, 108 &to_command_line_,
109 from_command_line_, 109 from_command_line_,
110 channel); 110 channel);
111 } 111 }
112 112
113 base::CommandLine from_command_line_; 113 base::CommandLine from_command_line_;
114 base::CommandLine to_command_line_; 114 base::CommandLine to_command_line_;
115 115
116 DISALLOW_COPY_AND_ASSIGN(DisableWebRtcEncryptionFlagTest); 116 DISALLOW_COPY_AND_ASSIGN(DisableWebRtcEncryptionFlagTest);
117 }; 117 };
118 118
119 TEST_F(DisableWebRtcEncryptionFlagTest, UnknownChannel) { 119 TEST_F(DisableWebRtcEncryptionFlagTest, UnknownChannel) {
120 MaybeCopyDisableWebRtcEncryptionSwitch(VersionInfo::CHANNEL_UNKNOWN); 120 MaybeCopyDisableWebRtcEncryptionSwitch(version_info::Channel::UNKNOWN);
121 EXPECT_TRUE(to_command_line_.HasSwitch(switches::kDisableWebRtcEncryption)); 121 EXPECT_TRUE(to_command_line_.HasSwitch(switches::kDisableWebRtcEncryption));
122 } 122 }
123 123
124 TEST_F(DisableWebRtcEncryptionFlagTest, CanaryChannel) { 124 TEST_F(DisableWebRtcEncryptionFlagTest, CanaryChannel) {
125 MaybeCopyDisableWebRtcEncryptionSwitch(VersionInfo::CHANNEL_CANARY); 125 MaybeCopyDisableWebRtcEncryptionSwitch(version_info::Channel::CANARY);
126 EXPECT_TRUE(to_command_line_.HasSwitch(switches::kDisableWebRtcEncryption)); 126 EXPECT_TRUE(to_command_line_.HasSwitch(switches::kDisableWebRtcEncryption));
127 } 127 }
128 128
129 TEST_F(DisableWebRtcEncryptionFlagTest, DevChannel) { 129 TEST_F(DisableWebRtcEncryptionFlagTest, DevChannel) {
130 MaybeCopyDisableWebRtcEncryptionSwitch(VersionInfo::CHANNEL_DEV); 130 MaybeCopyDisableWebRtcEncryptionSwitch(version_info::Channel::DEV);
131 EXPECT_TRUE(to_command_line_.HasSwitch(switches::kDisableWebRtcEncryption)); 131 EXPECT_TRUE(to_command_line_.HasSwitch(switches::kDisableWebRtcEncryption));
132 } 132 }
133 133
134 TEST_F(DisableWebRtcEncryptionFlagTest, BetaChannel) { 134 TEST_F(DisableWebRtcEncryptionFlagTest, BetaChannel) {
135 MaybeCopyDisableWebRtcEncryptionSwitch(VersionInfo::CHANNEL_BETA); 135 MaybeCopyDisableWebRtcEncryptionSwitch(version_info::Channel::BETA);
136 #if defined(OS_ANDROID) 136 #if defined(OS_ANDROID)
137 EXPECT_TRUE(to_command_line_.HasSwitch(switches::kDisableWebRtcEncryption)); 137 EXPECT_TRUE(to_command_line_.HasSwitch(switches::kDisableWebRtcEncryption));
138 #else 138 #else
139 EXPECT_FALSE(to_command_line_.HasSwitch(switches::kDisableWebRtcEncryption)); 139 EXPECT_FALSE(to_command_line_.HasSwitch(switches::kDisableWebRtcEncryption));
140 #endif 140 #endif
141 } 141 }
142 142
143 TEST_F(DisableWebRtcEncryptionFlagTest, StableChannel) { 143 TEST_F(DisableWebRtcEncryptionFlagTest, StableChannel) {
144 MaybeCopyDisableWebRtcEncryptionSwitch(VersionInfo::CHANNEL_STABLE); 144 MaybeCopyDisableWebRtcEncryptionSwitch(version_info::Channel::STABLE);
145 EXPECT_FALSE(to_command_line_.HasSwitch(switches::kDisableWebRtcEncryption)); 145 EXPECT_FALSE(to_command_line_.HasSwitch(switches::kDisableWebRtcEncryption));
146 } 146 }
147 147
148 #endif // ENABLE_WEBRTC 148 #endif // ENABLE_WEBRTC
149 149
150 class BlinkSettingsFieldTrialTest : public testing::Test { 150 class BlinkSettingsFieldTrialTest : public testing::Test {
151 public: 151 public:
152 static const char kParserFieldTrialName[]; 152 static const char kParserFieldTrialName[];
153 static const char kIFrameFieldTrialName[]; 153 static const char kIFrameFieldTrialName[];
154 154
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 306
307 NavigationEntry* entry = browser()->tab_strip_model()-> 307 NavigationEntry* entry = browser()->tab_strip_model()->
308 GetActiveWebContents()->GetController().GetLastCommittedEntry(); 308 GetActiveWebContents()->GetController().GetLastCommittedEntry();
309 ASSERT_TRUE(entry != NULL); 309 ASSERT_TRUE(entry != NULL);
310 EXPECT_EQ(url_rewritten, entry->GetURL()); 310 EXPECT_EQ(url_rewritten, entry->GetURL());
311 EXPECT_EQ(url_original, entry->GetVirtualURL()); 311 EXPECT_EQ(url_original, entry->GetVirtualURL());
312 } 312 }
313 313
314 } // namespace content 314 } // namespace content
315 #endif // !defined(OS_IOS) && !defined(OS_ANDROID) 315 #endif // !defined(OS_IOS) && !defined(OS_ANDROID)
OLDNEW
« no previous file with comments | « chrome/browser/chrome_content_browser_client.cc ('k') | chrome/browser/chromeos/extensions/wallpaper_manager_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698