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

Unified Diff: ios/chrome/browser/ios_chrome_flag_descriptions.cc

Issue 2774203002: Migrate about:flags messages to const char* (Closed)
Patch Set: fix iOS compilation Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ios/chrome/browser/ios_chrome_flag_descriptions.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/ios_chrome_flag_descriptions.cc
diff --git a/ios/chrome/browser/ios_chrome_flag_descriptions.cc b/ios/chrome/browser/ios_chrome_flag_descriptions.cc
new file mode 100644
index 0000000000000000000000000000000000000000..217f55c2484aee54e73f992820f3540c393fdc55
--- /dev/null
+++ b/ios/chrome/browser/ios_chrome_flag_descriptions.cc
@@ -0,0 +1,30 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ios/chrome/browser/ios_chrome_flag_descriptions.h"
+
+// This file declares strings used in chrome://flags. These messages are not
+// translated, because instead of end-users they target Chromium developers and
+// testers. See https://crbug.com/587272 and https://crbug.com/703134 for more
+// details.
+
+namespace flag_descriptions {
+
+const char kBrowserTaskScheduler[] = "Task Scheduler";
+
+const char kBrowserTaskSchedulerDescription[] =
+ "Enables redirection of some task posting APIs to the task scheduler.";
+
+const char kContextualSearch[] = "Contextual Search";
+
+const char kContextualSearchDescription[] =
+ "Whether or not Contextual Search is enabled.";
+
+const char kPhysicalWeb[] = "Physical Web";
+
+const char kPhysicalWebDescription[] =
+ "When enabled, the omnibox will include suggestions for web pages "
+ "broadcast by devices near you.";
+
+} // namespace flag_descriptions
« no previous file with comments | « ios/chrome/browser/ios_chrome_flag_descriptions.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698