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

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

Issue 2810833002: Add memory ablation experiment. (Closed)
Patch Set: 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 2768 matching lines...) Expand 10 before | Expand all | Expand 10 after
2779 2779
2780 const char kDelayNavigationName[] = "Delay navigations"; 2780 const char kDelayNavigationName[] = "Delay navigations";
2781 2781
2782 const char kDelayNavigationDescription[] = 2782 const char kDelayNavigationDescription[] =
2783 "Add a fixed delay to main frame navigations."; 2783 "Add a fixed delay to main frame navigations.";
2784 2784
2785 const char kDebugShortcutsDescription[] = 2785 const char kDebugShortcutsDescription[] =
2786 "Enables additional keyboard shortcuts that are useful for debugging " 2786 "Enables additional keyboard shortcuts that are useful for debugging "
2787 "Ash."; 2787 "Ash.";
2788 2788
2789 const char kMemoryAblationName[] = "Memory ablation experiment";
2790 const char kMemoryAblationDescription[] =
2791 "Allocates extra memory in the browser process.";
2792
2789 #if defined(OS_ANDROID) 2793 #if defined(OS_ANDROID)
2790 2794
2791 const char kEnableCustomContextMenuName[] = "Enable custom context menu"; 2795 const char kEnableCustomContextMenuName[] = "Enable custom context menu";
2792 2796
2793 const char kEnableCustomContextMenuDescription[] = 2797 const char kEnableCustomContextMenuDescription[] =
2794 "Enables a new context menu when a link, image, or video is pressed within " 2798 "Enables a new context menu when a link, image, or video is pressed within "
2795 "Chrome."; 2799 "Chrome.";
2796 2800
2797 #endif // defined(OS_ANDROID) 2801 #endif // defined(OS_ANDROID)
2798 2802
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
2946 const char kEnableEncryptionMigrationName[] = 2950 const char kEnableEncryptionMigrationName[] =
2947 "Enable encryption migration of user data"; 2951 "Enable encryption migration of user data";
2948 2952
2949 const char kEnableEncryptionMigrationDescription[] = 2953 const char kEnableEncryptionMigrationDescription[] =
2950 "If enabled and the device supports ARC, the user will be asked to update " 2954 "If enabled and the device supports ARC, the user will be asked to update "
2951 "the encryption of user data when the user signs in."; 2955 "the encryption of user data when the user signs in.";
2952 2956
2953 #endif // #if defined(OS_CHROMEOS) 2957 #endif // #if defined(OS_CHROMEOS)
2954 2958
2955 } // namespace flag_descriptions 2959 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698