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

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

Issue 2892893002: Initial implementation of new-style notification (Closed)
Patch Set: Fixed build failure 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 2037 matching lines...) Expand 10 before | Expand all | Expand 10 after
2048 // Message center strings 2048 // Message center strings
2049 2049
2050 const char kMessageCenterAlwaysScrollUpUponRemovalName[] = 2050 const char kMessageCenterAlwaysScrollUpUponRemovalName[] =
2051 "Experiments that message center always scroll up upon notification " 2051 "Experiments that message center always scroll up upon notification "
2052 "removal"; 2052 "removal";
2053 2053
2054 const char kMessageCenterAlwaysScrollUpUponRemovalDescription[] = 2054 const char kMessageCenterAlwaysScrollUpUponRemovalDescription[] =
2055 "Enables experiment that message center always scroll up when a " 2055 "Enables experiment that message center always scroll up when a "
2056 "notification is removed."; 2056 "notification is removed.";
2057 2057
2058 const char kMessageCenterNewStyleNotificationName[] = "New style notification";
2059
2060 const char kMessageCenterNewStyleNotificationDescription[] =
2061 "Enables the experiment style of material-design notification";
2062
2058 const char kCastStreamingHwEncodingName[] = 2063 const char kCastStreamingHwEncodingName[] =
2059 "Cast Streaming hardware video encoding"; 2064 "Cast Streaming hardware video encoding";
2060 2065
2061 const char kCastStreamingHwEncodingDescription[] = 2066 const char kCastStreamingHwEncodingDescription[] =
2062 "This option enables support in Cast Streaming for encoding video " 2067 "This option enables support in Cast Streaming for encoding video "
2063 "streams using platform hardware."; 2068 "streams using platform hardware.";
2064 2069
2065 const char kAllowInsecureLocalhostName[] = 2070 const char kAllowInsecureLocalhostName[] =
2066 "Allow invalid certificates for resources loaded from localhost."; 2071 "Allow invalid certificates for resources loaded from localhost.";
2067 2072
(...skipping 1135 matching lines...) Expand 10 before | Expand all | Expand 10 after
3203 3208
3204 const char kDisableNewVirtualKeyboardBehaviorName[] = 3209 const char kDisableNewVirtualKeyboardBehaviorName[] =
3205 "New window behavior for the accessibility keyboard"; 3210 "New window behavior for the accessibility keyboard";
3206 const char kDisableNewVirtualKeyboardBehaviorDescription[] = 3211 const char kDisableNewVirtualKeyboardBehaviorDescription[] =
3207 "Disable new window behavior for the accessibility keyboard " 3212 "Disable new window behavior for the accessibility keyboard "
3208 "in non-sticky mode (do not change work area in non-sticky mode)."; 3213 "in non-sticky mode (do not change work area in non-sticky mode).";
3209 3214
3210 #endif // defined(OS_CHROMEOS) 3215 #endif // defined(OS_CHROMEOS)
3211 3216
3212 } // namespace flag_descriptions 3217 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698