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

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

Issue 147663002: Remove unused EnableAdviewSrcAttribute command line flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove still more tests Created 6 years, 10 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
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/apps/ad_view_browsertest.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 665 matching lines...) Expand 10 before | Expand all | Expand 10 after
676 SINGLE_VALUE_TYPE(switches::kEnableFastUnload) 676 SINGLE_VALUE_TYPE(switches::kEnableFastUnload)
677 }, 677 },
678 { 678 {
679 "enable-adview", 679 "enable-adview",
680 IDS_FLAGS_ENABLE_ADVIEW_NAME, 680 IDS_FLAGS_ENABLE_ADVIEW_NAME,
681 IDS_FLAGS_ENABLE_ADVIEW_DESCRIPTION, 681 IDS_FLAGS_ENABLE_ADVIEW_DESCRIPTION,
682 kOsDesktop, 682 kOsDesktop,
683 SINGLE_VALUE_TYPE(switches::kEnableAdview) 683 SINGLE_VALUE_TYPE(switches::kEnableAdview)
684 }, 684 },
685 { 685 {
686 "enable-adview-src-attribute",
687 IDS_FLAGS_ENABLE_ADVIEW_SRC_ATTRIBUTE_NAME,
688 IDS_FLAGS_ENABLE_ADVIEW_SRC_ATTRIBUTE_DESCRIPTION,
689 kOsDesktop,
690 SINGLE_VALUE_TYPE(switches::kEnableAdviewSrcAttribute)
691 },
692 {
693 "enable-app-window-controls", 686 "enable-app-window-controls",
694 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_NAME, 687 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_NAME,
695 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_DESCRIPTION, 688 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_DESCRIPTION,
696 kOsDesktop, 689 kOsDesktop,
697 SINGLE_VALUE_TYPE(switches::kEnableAppWindowControls) 690 SINGLE_VALUE_TYPE(switches::kEnableAppWindowControls)
698 }, 691 },
699 { 692 {
700 "apps-new-install-bubble", 693 "apps-new-install-bubble",
701 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_NAME, 694 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_NAME,
702 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_DESCRIPTION, 695 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_DESCRIPTION,
(...skipping 1803 matching lines...) Expand 10 before | Expand all | Expand 10 after
2506 } 2499 }
2507 2500
2508 const Experiment* GetExperiments(size_t* count) { 2501 const Experiment* GetExperiments(size_t* count) {
2509 *count = num_experiments; 2502 *count = num_experiments;
2510 return experiments; 2503 return experiments;
2511 } 2504 }
2512 2505
2513 } // namespace testing 2506 } // namespace testing
2514 2507
2515 } // namespace about_flags 2508 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/apps/ad_view_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698