Index: chrome/browser/process_singleton_win.cc |
diff --git a/chrome/browser/process_singleton_win.cc b/chrome/browser/process_singleton_win.cc |
index 05850c48488df82b7f8ae811816ff6286f11c4ea..411f930a6704bf192e864bd38ead233bac9a61f6 100644 |
--- a/chrome/browser/process_singleton_win.cc |
+++ b/chrome/browser/process_singleton_win.cc |
@@ -20,7 +20,6 @@ |
#include "base/win/metro.h" |
#include "base/win/registry.h" |
#include "base/win/scoped_handle.h" |
-#include "base/win/win_util.h" |
#include "base/win/windows_version.h" |
#include "chrome/browser/browser_process.h" |
#include "chrome/browser/browser_process_platform_part.h" |
@@ -227,7 +226,7 @@ bool ShouldLaunchInWindows8ImmersiveMode(const base::FilePath& user_data_dir) { |
®_value) == ERROR_SUCCESS) { |
return reg_value == 1; |
} |
- return base::win::IsTouchEnabledDevice(); |
+ return false; |
#endif |
} |