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

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

Issue 2683493002: Get signals working in the EXTRA_DATA section of MHTML (Closed)
Patch Set: Dimich and DTrainor CR fixes 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 2012 matching lines...) Expand 10 before | Expand all | Expand 10 after
2023 R"*(that the user can click on it to download the page later.)*"; 2023 R"*(that the user can click on it to download the page later.)*";
2024 2024
2025 const char kOfflinePagesSvelteConcurrentLoadingName[] = 2025 const char kOfflinePagesSvelteConcurrentLoadingName[] =
2026 "Enables concurrent background loading on svelte."; 2026 "Enables concurrent background loading on svelte.";
2027 2027
2028 const char kOfflinePagesSvelteConcurrentLoadingDescription[] = 2028 const char kOfflinePagesSvelteConcurrentLoadingDescription[] =
2029 "Enables concurrent background loading (or downloading) of pages on " 2029 "Enables concurrent background loading (or downloading) of pages on "
2030 "Android svelte (512MB RAM) devices. Otherwise, background loading will " 2030 "Android svelte (512MB RAM) devices. Otherwise, background loading will "
2031 "happen when the svelte device is idle."; 2031 "happen when the svelte device is idle.";
2032 2032
2033 const char kOfflinePagesLoadSignalCollectingName[] =
2034 "Enables collecting load timing data for offline page snapshots.";
Dmitry Titov 2017/03/31 18:05:53 Same note as in .h file. I think we are not reall
Pete Williamson 2017/03/31 21:58:04 Changed to "Enables load completeness data colllec
2035
2036 const char kOfflinePagesLoadSignalCollectingDescription[] =
2037 "Enables load timing data collection while writing an offline page. "
2038 "This data is collected in the snapshotted offline page to allow "
2039 "data analysis to improve deciding when to make the offline snapshot.";
2040
2033 const char kOfflinePagesPrefetchingName[] = 2041 const char kOfflinePagesPrefetchingName[] =
2034 "Enables suggested offline pages to be prefetched."; 2042 "Enables suggested offline pages to be prefetched.";
2035 2043
2036 const char kOfflinePagesPrefetchingDescription[] = 2044 const char kOfflinePagesPrefetchingDescription[] =
2037 "Enables suggested offline pages to be prefetched, so useful content is " 2045 "Enables suggested offline pages to be prefetched, so useful content is "
2038 "available while offline."; 2046 "available while offline.";
2039 2047
2040 const char kOfflinePagesSharingName[] = "Enables offline pages to be shared."; 2048 const char kOfflinePagesSharingName[] = "Enables offline pages to be shared.";
2041 2049
2042 const char kOfflinePagesSharingDescription[] = 2050 const char kOfflinePagesSharingDescription[] =
(...skipping 840 matching lines...) Expand 10 before | Expand all | Expand 10 after
2883 const char kEnableEhvInputName[] = 2891 const char kEnableEhvInputName[] =
2884 "Emoji, handwriting and voice input on opt-in IME menu"; 2892 "Emoji, handwriting and voice input on opt-in IME menu";
2885 2893
2886 const char kEnableEhvInputDescription[] = 2894 const char kEnableEhvInputDescription[] =
2887 "Enable access to emoji, handwriting and voice input form opt-in IME " 2895 "Enable access to emoji, handwriting and voice input form opt-in IME "
2888 "menu."; 2896 "menu.";
2889 2897
2890 #endif // #if defined(OS_CHROMEOS) 2898 #endif // #if defined(OS_CHROMEOS)
2891 2899
2892 } // namespace flag_descriptions 2900 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698