Index: trunk/src/ui/base/ui_base_switches_util.cc |
=================================================================== |
--- trunk/src/ui/base/ui_base_switches_util.cc (revision 207819) |
+++ trunk/src/ui/base/ui_base_switches_util.cc (working copy) |
@@ -10,23 +10,13 @@ |
namespace switches { |
bool IsTouchDragDropEnabled() { |
-#if defined(OS_CHROMEOS) |
- return !CommandLine::ForCurrentProcess()->HasSwitch( |
- switches::kDisableTouchDragDrop); |
-#else |
return CommandLine::ForCurrentProcess()->HasSwitch( |
switches::kEnableTouchDragDrop); |
-#endif |
} |
bool IsTouchEditingEnabled() { |
-#if defined(OS_CHROMEOS) |
- return !CommandLine::ForCurrentProcess()->HasSwitch( |
- switches::kDisableTouchEditing); |
-#else |
return CommandLine::ForCurrentProcess()->HasSwitch( |
switches::kEnableTouchEditing); |
-#endif |
} |
bool IsNewDialogStyleEnabled() { |