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

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

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 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
7 7
8 // Includes needed for macros allowing conditional compilation of some strings. 8 // Includes needed for macros allowing conditional compilation of some strings.
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "build/buildflag.h" 10 #include "build/buildflag.h"
(...skipping 3114 matching lines...) Expand 10 before | Expand all | Expand 10 after
3125 // Name of the about: flag for enabling emoji, handwriting and voice input on 3125 // Name of the about: flag for enabling emoji, handwriting and voice input on
3126 // opt-in IME menu. 3126 // opt-in IME menu.
3127 extern const char kEnableEhvInputName[]; 3127 extern const char kEnableEhvInputName[];
3128 3128
3129 // Description of the about: flag enabling emoji, handwriting and voice input on 3129 // Description of the about: flag enabling emoji, handwriting and voice input on
3130 // opt-in IME menu. 3130 // opt-in IME menu.
3131 extern const char kEnableEhvInputDescription[]; 3131 extern const char kEnableEhvInputDescription[];
3132 3132
3133 #endif // #if defined(OS_CHROMEOS) 3133 #endif // #if defined(OS_CHROMEOS)
3134 3134
3135 #if defined(OS_LINUX) && !defined(OS_CHROMEOS)
3136 // Name of the about: flag for enabling freedesktop system notifications.
3137 extern const char kUseSystemNotificationsName[];
3138
3139 // Description of the about: flag enabling freedesktop system notifications.
3140 extern const char kUseSystemNotificationsDescription[];
3141 #endif // defined(USE_GLIB) && defined(USE_GIO)
3142
3135 } // namespace flag_descriptions 3143 } // namespace flag_descriptions
3136 3144
3137 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 3145 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698