Commit d58fe786 authored by stevet's avatar stevet Committed by Commit bot

Make IsGestureTyping enabled on by default.

BUG=527500

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

Cr-Commit-Position: refs/heads/master@{#347858}
parent 1b10aabb
......@@ -184,10 +184,8 @@ bool IsFloatingVirtualKeyboardEnabled() {
}
bool IsGestureTypingEnabled() {
std::string keyboard_switch =
base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
switches::kGestureTyping);
return keyboard_switch == switches::kGestureTypingEnabled;
return base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
switches::kGestureTyping) != switches::kGestureTypingDisabled;
}
bool IsGestureEditingEnabled() {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment