OLD | NEW |
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 const char kAccelerated2dCanvasName[] = "Accelerated 2D canvas"; | 9 const char kAccelerated2dCanvasName[] = "Accelerated 2D canvas"; |
10 const char kAccelerated2dCanvasDescription[] = | 10 const char kAccelerated2dCanvasDescription[] = |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 const char kCreditCardAssistName[] = "Credit Card Assisted Filling"; | 110 const char kCreditCardAssistName[] = "Credit Card Assisted Filling"; |
111 const char kCreditCardAssistDescription[] = | 111 const char kCreditCardAssistDescription[] = |
112 "Enable assisted credit card filling on certain sites."; | 112 "Enable assisted credit card filling on certain sites."; |
113 | 113 |
114 const char kCrossProcessGuestViewIsolationName[] = | 114 const char kCrossProcessGuestViewIsolationName[] = |
115 "Cross process frames for guests"; | 115 "Cross process frames for guests"; |
116 const char kCrossProcessGuestViewIsolationDescription[] = | 116 const char kCrossProcessGuestViewIsolationDescription[] = |
117 "Highly experimental where guests such as <webview> are implemented on " | 117 "Highly experimental where guests such as <webview> are implemented on " |
118 "the out-of-process iframe infrastructure."; | 118 "the out-of-process iframe infrastructure."; |
119 | 119 |
120 const char kDataReductionProxyCarrierTestName[] = | |
121 "Enable a carrier-specific Data Reduction Proxy for testing."; | |
122 const char kDataReductionProxyCarrierTestDescription[] = | |
123 "Use a carrier-specific Data Reduction Proxy for testing."; | |
124 | |
125 const char kDataReductionProxyLoFiName[] = "Data Saver Lo-Fi mode"; | 120 const char kDataReductionProxyLoFiName[] = "Data Saver Lo-Fi mode"; |
126 const char kDataReductionProxyLoFiDescription[] = | 121 const char kDataReductionProxyLoFiDescription[] = |
127 "Forces Data Saver Lo-Fi mode to be always enabled, enabled only on " | 122 "Forces Data Saver Lo-Fi mode to be always enabled, enabled only on " |
128 "cellular connections, or disabled. Data Saver must be enabled for Lo-Fi " | 123 "cellular connections, or disabled. Data Saver must be enabled for Lo-Fi " |
129 "mode to be used."; | 124 "mode to be used."; |
130 const char kDataReductionProxyLoFiAlwaysOn[] = "Always on"; | 125 const char kDataReductionProxyLoFiAlwaysOn[] = "Always on"; |
131 const char kDataReductionProxyLoFiCellularOnly[] = "Cellular only"; | 126 const char kDataReductionProxyLoFiCellularOnly[] = "Cellular only"; |
132 const char kDataReductionProxyLoFiDisabled[] = "Disable"; | 127 const char kDataReductionProxyLoFiDisabled[] = "Disable"; |
133 const char kDataReductionProxyLoFiSlowConnectionsOnly[] = | 128 const char kDataReductionProxyLoFiSlowConnectionsOnly[] = |
134 "Slow connections only"; | 129 "Slow connections only"; |
(...skipping 3005 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3140 "Enables inspection of native UI elements. For local inspection use " | 3135 "Enables inspection of native UI elements. For local inspection use " |
3141 "chrome://inspect#other"; | 3136 "chrome://inspect#other"; |
3142 | 3137 |
3143 const char kMultideviceName[] = "Enable multidevice features"; | 3138 const char kMultideviceName[] = "Enable multidevice features"; |
3144 const char kMultideviceDescription[] = | 3139 const char kMultideviceDescription[] = |
3145 "Enables UI for controlling multidevice features."; | 3140 "Enables UI for controlling multidevice features."; |
3146 | 3141 |
3147 #endif // defined(OS_CHROMEOS) | 3142 #endif // defined(OS_CHROMEOS) |
3148 | 3143 |
3149 } // namespace flag_descriptions | 3144 } // namespace flag_descriptions |
OLD | NEW |