Commit 64296782 authored by estade@chromium.org's avatar estade@chromium.org

visual studio compile fix

BUG=none
TEST=none
TBR=playmobil

Review URL: http://codereview.chromium.org/7572012

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95385 0039d316-1c4b-4281-b951-d872f2087c98
parent 70ffba2f
......@@ -719,7 +719,7 @@ void AppLauncherHandler::HandleRecordAppLaunchByURL(
CHECK(args->GetDouble(1, &source));
extension_misc::AppLaunchBucket bucket =
static_cast<extension_misc::AppLaunchBucket>(source);
static_cast<extension_misc::AppLaunchBucket>(static_cast<int>(source));
CHECK(source < extension_misc::APP_LAUNCH_BUCKET_BOUNDARY);
RecordAppLaunchByURL(web_ui_->GetProfile(), url, bucket);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment