From 1c321ee57a522e891d91a41a09bd900f0afd6f0d Mon Sep 17 00:00:00 2001 From: "aa@chromium.org" Date: Mon, 21 May 2012 03:02:34 +0000 Subject: Move Extension into extensions namespace BUG=117262 TBR=aa@chromium.org Review URL: https://chromiumcodereview.appspot.com/10375021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138074 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/utility/chrome_content_utility_client.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'chrome/utility') diff --git a/chrome/utility/chrome_content_utility_client.cc b/chrome/utility/chrome_content_utility_client.cc index ade6bd7..7bccbfc 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(location), + static_cast(location), creation_flags); if (unpacker.Run() && unpacker.DumpImagesToFile() && unpacker.DumpMessageCatalogsToFile()) { -- cgit v1.1