summaryrefslogtreecommitdiffstats
path: root/win8/delegate_execute
diff options
context:
space:
mode:
authorbratell@opera.com <bratell@opera.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-21 11:40:15 +0000
committerbratell@opera.com <bratell@opera.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-21 11:40:15 +0000
commit3f70ee07090b0a7557602ff0b28150383c478815 (patch)
treef878faff629d698123c7a81d2112ea14b0a35e68 /win8/delegate_execute
parentca1d1192fd4bf482a04fb725a4291cc124dde588 (diff)
downloadchromium_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.cc2
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;