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

Unified Diff: chrome/utility/chrome_content_utility_client.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/test/base/testing_profile.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/chrome_content_utility_client.cc
diff --git a/chrome/utility/chrome_content_utility_client.cc b/chrome/utility/chrome_content_utility_client.cc
index ade6bd76bedf42fb46b1643858833589297c2852..7bccbfcaabbab861b2822b5f698568bf2723f3d8 100644
--- a/chrome/utility/chrome_content_utility_client.cc
+++ b/chrome/utility/chrome_content_utility_client.cc
@@ -102,12 +102,12 @@ void ChromeContentUtilityClient::OnUnpackExtension(
const std::string& extension_id,
int location,
int creation_flags) {
- CHECK(location > Extension::INVALID);
- CHECK(location < Extension::NUM_LOCATIONS);
+ CHECK(location > extensions::Extension::INVALID);
+ CHECK(location < extensions::Extension::NUM_LOCATIONS);
ExtensionUnpacker unpacker(
extension_path,
extension_id,
- static_cast<Extension::Location>(location),
+ static_cast<extensions::Extension::Location>(location),
creation_flags);
if (unpacker.Run() && unpacker.DumpImagesToFile() &&
unpacker.DumpMessageCatalogsToFile()) {
« no previous file with comments | « chrome/test/base/testing_profile.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698