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

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

Issue 2794103002: Add initial support for native Linux desktop notifications (Closed)
Patch Set: Refactor, move impl to chrome/browser/notifications Created 3 years, 8 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 2871 matching lines...) Expand 10 before | Expand all | Expand 10 after
2882 2882
2883 const char kEnableEhvInputName[] = 2883 const char kEnableEhvInputName[] =
2884 "Emoji, handwriting and voice input on opt-in IME menu"; 2884 "Emoji, handwriting and voice input on opt-in IME menu";
2885 2885
2886 const char kEnableEhvInputDescription[] = 2886 const char kEnableEhvInputDescription[] =
2887 "Enable access to emoji, handwriting and voice input form opt-in IME " 2887 "Enable access to emoji, handwriting and voice input form opt-in IME "
2888 "menu."; 2888 "menu.";
2889 2889
2890 #endif // #if defined(OS_CHROMEOS) 2890 #endif // #if defined(OS_CHROMEOS)
2891 2891
2892 #if defined(OS_LINUX) && !defined(OS_CHROMEOS)
2893 const char kUseSystemNotificationsName[] =
2894 "Use Freedesktop system notifications";
2895
2896 const char kUseSystemNotificationsDescription[] =
2897 "Send notifications to the notification center supplied by the Linux "
2898 "desktop environment instead of using Chrome-rendered notifications.";
2899 #endif
2900
2892 } // namespace flag_descriptions 2901 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698