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

Unified Diff: chrome/common/extensions/extension_manifests_unittest.cc

Issue 8693005: Remove potentially many static initializers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 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
Index: chrome/common/extensions/extension_manifests_unittest.cc
diff --git a/chrome/common/extensions/extension_manifests_unittest.cc b/chrome/common/extensions/extension_manifests_unittest.cc
index 4eac8133d6e552288822ebb55f13a5ef66a62ffa..cd3f5f5d73d771d361aae2e616ecec3ec67b3c54 100644
--- a/chrome/common/extensions/extension_manifests_unittest.cc
+++ b/chrome/common/extensions/extension_manifests_unittest.cc
@@ -933,7 +933,7 @@ TEST_F(ExtensionManifestTest, FileManagerURLOverride) {
#if defined(FILE_MANAGER_EXTENSION)
EXPECT_EQ("", error);
#else
- EXPECT_EQ(errors::kInvalidChromeURLOverrides, error);
+ EXPECT_EQ(std::string(errors::kInvalidChromeURLOverrides), error);
Ryan Sleevi 2011/11/24 20:13:59 EXPECT_STREQ
#endif
// Extensions of other types can't ovverride chrome://files/ URL.

Powered by Google App Engine
This is Rietveld 408576698