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

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

Issue 10375021: Move Extension into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Take 6 Created 8 years, 7 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
« no previous file with comments | « chrome/common/extensions/extension_set_unittest.cc ('k') | chrome/common/extensions/extension_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/extension_test_util.cc
diff --git a/chrome/common/extensions/extension_test_util.cc b/chrome/common/extensions/extension_test_util.cc
index 31f3af255a03f434d2b9285f9c1ad6206258dbd9..fc6562f8534a7cf50c87bb64c030e672c5294e86 100644
--- a/chrome/common/extensions/extension_test_util.cc
+++ b/chrome/common/extensions/extension_test_util.cc
@@ -10,10 +10,10 @@ namespace extension_test_util {
std::string MakeId(std::string seed) {
std::string result;
- bool success = Extension::GenerateId(seed, &result);
+ bool success = extensions::Extension::GenerateId(seed, &result);
EXPECT_TRUE(success);
EXPECT_FALSE(result.empty());
- EXPECT_TRUE(Extension::IdIsValid(result));
+ EXPECT_TRUE(extensions::Extension::IdIsValid(result));
return result;
}
« no previous file with comments | « chrome/common/extensions/extension_set_unittest.cc ('k') | chrome/common/extensions/extension_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698