| 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 // Material Design version of chrome://bookmarks | 9 // Material Design version of chrome://bookmarks |
| 10 | 10 |
| (...skipping 1329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1340 "Display a notification when quitting Chrome if hosted apps are " | 1340 "Display a notification when quitting Chrome if hosted apps are " |
| 1341 "currently running."; | 1341 "currently running."; |
| 1342 | 1342 |
| 1343 #if defined(OS_ANDROID) | 1343 #if defined(OS_ANDROID) |
| 1344 | 1344 |
| 1345 const char kPullToRefreshEffectName[] = "The pull-to-refresh effect"; | 1345 const char kPullToRefreshEffectName[] = "The pull-to-refresh effect"; |
| 1346 | 1346 |
| 1347 const char kPullToRefreshEffectDescription[] = | 1347 const char kPullToRefreshEffectDescription[] = |
| 1348 "Page reloads triggered by vertically overscrolling content."; | 1348 "Page reloads triggered by vertically overscrolling content."; |
| 1349 | 1349 |
| 1350 const char kTranslateCompactUIName[] = "New Translate Infobar"; |
| 1351 |
| 1352 const char kTranslateCompactUIDescription[] = |
| 1353 "Enable the new Translate compact infobar UI."; |
| 1354 |
| 1350 #endif // defined(OS_ANDROID) | 1355 #endif // defined(OS_ANDROID) |
| 1351 | 1356 |
| 1352 #if defined(OS_MACOSX) | 1357 #if defined(OS_MACOSX) |
| 1353 | 1358 |
| 1354 const char kTranslateNewUxName[] = "New Translate UX"; | 1359 const char kTranslateNewUxName[] = "New Translate UX"; |
| 1355 | 1360 |
| 1356 const char kTranslateNewUxDescription[] = | 1361 const char kTranslateNewUxDescription[] = |
| 1357 "Enable the new Translate bubble UX is offered instead of the infobar."; | 1362 "Enable the new Translate bubble UX is offered instead of the infobar."; |
| 1358 | 1363 |
| 1359 #endif // defined(OS_MACOSX) | 1364 #endif // defined(OS_MACOSX) |
| (...skipping 1730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3090 | 3095 |
| 3091 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; | 3096 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; |
| 3092 | 3097 |
| 3093 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; | 3098 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; |
| 3094 | 3099 |
| 3095 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; | 3100 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; |
| 3096 | 3101 |
| 3097 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; | 3102 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; |
| 3098 | 3103 |
| 3099 } // namespace flag_descriptions | 3104 } // namespace flag_descriptions |
| OLD | NEW |