diff options
author | bratell@opera.com <bratell@opera.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-21 11:40:15 +0000 |
---|---|---|
committer | bratell@opera.com <bratell@opera.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-21 11:40:15 +0000 |
commit | 3f70ee07090b0a7557602ff0b28150383c478815 (patch) | |
tree | f878faff629d698123c7a81d2112ea14b0a35e68 /win8/delegate_execute | |
parent | ca1d1192fd4bf482a04fb725a4291cc124dde588 (diff) | |
download | chromium_src-3f70ee07090b0a7557602ff0b28150383c478815.zip chromium_src-3f70ee07090b0a7557602ff0b28150383c478815.tar.gz chromium_src-3f70ee07090b0a7557602ff0b28150383c478815.tar.bz2 |
Fix for VS2010 compiler warning.
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
Diffstat (limited to 'win8/delegate_execute')
-rw-r--r-- | win8/delegate_execute/command_execute_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win8/delegate_execute/command_execute_impl.cc b/win8/delegate_execute/command_execute_impl.cc index 405b24f..4c37e7b 100644 --- a/win8/delegate_execute/command_execute_impl.cc +++ b/win8/delegate_execute/command_execute_impl.cc @@ -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; |