Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(846)

Side by Side Diff: chrome/browser/flag_descriptions.cc

Issue 2871243003: Enable new-virtual-keyboard-behavior flag by default. (Closed)
Patch Set: rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/flag_descriptions.h" 5 #include "chrome/browser/flag_descriptions.h"
6 6
7 namespace flag_descriptions { 7 namespace flag_descriptions {
8 8
9 // Material Design version of chrome://bookmarks 9 // Material Design version of chrome://bookmarks
10 10
(...skipping 3140 matching lines...) Expand 10 before | Expand all | Expand 10 after
3151 "search engine."; 3151 "search engine.";
3152 3152
3153 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) 3153 #endif // !defined(OS_ANDROID) && !defined(OS_IOS)
3154 3154
3155 #if defined(OS_MACOSX) 3155 #if defined(OS_MACOSX)
3156 extern const char kMacRTLName[] = "Enable RTL"; 3156 extern const char kMacRTLName[] = "Enable RTL";
3157 extern const char kMacRTLDescription[] = 3157 extern const char kMacRTLDescription[] =
3158 "Mirrors the UI for RTL language users"; 3158 "Mirrors the UI for RTL language users";
3159 #endif 3159 #endif
3160 3160
3161 #if defined(OS_CHROMEOS)
3162
3163 const char kDisableNewVirtualKeyboardBehaviorName[] =
3164 "New window behavior for the accessibility keyboard";
3165 const char kDisableNewVirtualKeyboardBehaviorDescription[] =
3166 "Disable new window behavior for the accessibility keyboard "
3167 "in non-sticky mode (do not change work area in non-sticky mode).";
3168
3169 #endif // defined(OS_CHROMEOS)
3170
3161 } // namespace flag_descriptions 3171 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698