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

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

Issue 10573012: kill --downloads-new-ui (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/ui/browser.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 SINGLE_VALUE_TYPE(switches::kEnablePanels) 444 SINGLE_VALUE_TYPE(switches::kEnablePanels)
445 }, 445 },
446 { 446 {
447 "disable-shortcuts-provider", 447 "disable-shortcuts-provider",
448 IDS_FLAGS_DISABLE_SHORTCUTS_PROVIDER, 448 IDS_FLAGS_DISABLE_SHORTCUTS_PROVIDER,
449 IDS_FLAGS_DISABLE_SHORTCUTS_PROVIDER_DESCRIPTION, 449 IDS_FLAGS_DISABLE_SHORTCUTS_PROVIDER_DESCRIPTION,
450 kOsAll, 450 kOsAll,
451 SINGLE_VALUE_TYPE(switches::kDisableShortcutsProvider) 451 SINGLE_VALUE_TYPE(switches::kDisableShortcutsProvider)
452 }, 452 },
453 { 453 {
454 "downloads-new-ui", // FLAGS:RECORD_UMA 454 // See http://crbug.com/120416 for how to remove this flag.
455 IDS_FLAGS_DOWNLOADS_NEW_UI_NAME,
456 IDS_FLAGS_DOWNLOADS_NEW_UI_DESCRIPTION,
457 kOsAll,
458 SINGLE_VALUE_TYPE(switches::kDownloadsNewUI)
459 },
460 {
461 "save-page-as-mhtml", // FLAGS:RECORD_UMA 455 "save-page-as-mhtml", // FLAGS:RECORD_UMA
462 IDS_FLAGS_SAVE_PAGE_AS_MHTML_NAME, 456 IDS_FLAGS_SAVE_PAGE_AS_MHTML_NAME,
463 IDS_FLAGS_SAVE_PAGE_AS_MHTML_DESCRIPTION, 457 IDS_FLAGS_SAVE_PAGE_AS_MHTML_DESCRIPTION,
464 kOsMac | kOsWin | kOsLinux, 458 kOsMac | kOsWin | kOsLinux,
465 SINGLE_VALUE_TYPE(switches::kSavePageAsMHTML) 459 SINGLE_VALUE_TYPE(switches::kSavePageAsMHTML)
466 }, 460 },
467 { 461 {
468 "enable-autologin", 462 "enable-autologin",
469 IDS_FLAGS_ENABLE_AUTOLOGIN_NAME, 463 IDS_FLAGS_ENABLE_AUTOLOGIN_NAME,
470 IDS_FLAGS_ENABLE_AUTOLOGIN_DESCRIPTION, 464 IDS_FLAGS_ENABLE_AUTOLOGIN_DESCRIPTION,
(...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after
1260 } 1254 }
1261 1255
1262 const Experiment* GetExperiments(size_t* count) { 1256 const Experiment* GetExperiments(size_t* count) {
1263 *count = num_experiments; 1257 *count = num_experiments;
1264 return experiments; 1258 return experiments;
1265 } 1259 }
1266 1260
1267 } // namespace testing 1261 } // namespace testing
1268 1262
1269 } // namespace about_flags 1263 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/browser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698