Skip to content

Commit

Permalink
Fix for VS2010 compiler warning.
Browse files Browse the repository at this point in the history
Including the enum type name between scope and enum is a new invention
and older compilers warn about it being a non standard extension.

It's not needed so let us just drop it.

BUG=

Review URL: https://codereview.chromium.org/206573002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@258531 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
bratell@opera.com committed Mar 21, 2014
1 parent ca1d119 commit 3f70ee0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion win8/delegate_execute/command_execute_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ EC_HOST_UI_MODE CommandExecuteImpl::GetLaunchMode() {
base::FilePath chrome_exe;
if (!FindChromeExe(&chrome_exe) ||
ShellUtil::GetChromeDefaultStateFromPath(chrome_exe) !=
ShellUtil::DefaultState::IS_DEFAULT) {
ShellUtil::IS_DEFAULT) {
AtlTrace("Chrome is not default: launching in desktop mode\n");
launch_mode = ECHUIM_DESKTOP;
launch_mode_determined = true;
Expand Down

0 comments on commit 3f70ee0

Please sign in to comment.