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

Unified Diff: chrome/common/extensions/features/simple_feature_unittest.cc

Issue 68503019: Windows-specific implementation of Networking Private API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed Win64 compilation error. Created 7 years, 1 month 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
« no previous file with comments | « chrome/common/extensions/features/simple_feature.cc ('k') | components/wifi.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/features/simple_feature_unittest.cc
diff --git a/chrome/common/extensions/features/simple_feature_unittest.cc b/chrome/common/extensions/features/simple_feature_unittest.cc
index 02a2361807b581d1f2644faeedcff12e9232ee3e..b2ea868789cf382dae1942afe5ddebc3a3c88f4a 100644
--- a/chrome/common/extensions/features/simple_feature_unittest.cc
+++ b/chrome/common/extensions/features/simple_feature_unittest.cc
@@ -471,13 +471,13 @@ TEST_F(ExtensionSimpleFeatureTest, ParsePlatforms) {
EXPECT_EQ(Feature::CHROMEOS_PLATFORM, *feature->platforms()->begin());
platforms->Clear();
- platforms->AppendString("windows");
+ platforms->AppendString("win");
feature->Parse(value.get());
EXPECT_FALSE(feature->platforms()->empty());
EXPECT_EQ(Feature::WIN_PLATFORM, *feature->platforms()->begin());
platforms->Clear();
- platforms->AppendString("windows");
+ platforms->AppendString("win");
platforms->AppendString("chromeos");
feature->Parse(value.get());
std::set<Feature::Platform> expected_platforms;
« no previous file with comments | « chrome/common/extensions/features/simple_feature.cc ('k') | components/wifi.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698