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

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

Issue 8416003: Change internal name and visible name for settings to disable panels. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 | « chrome/app/generated_resources.grd ('k') | no next file » | 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 SINGLE_VALUE_TYPE(switches::kEnableSmoothScrolling) 324 SINGLE_VALUE_TYPE(switches::kEnableSmoothScrolling)
325 }, 325 },
326 { 326 {
327 "prerender-from-omnibox", // FLAGS:RECORD_UMA 327 "prerender-from-omnibox", // FLAGS:RECORD_UMA
328 IDS_FLAGS_PRERENDER_FROM_OMNIBOX_NAME, 328 IDS_FLAGS_PRERENDER_FROM_OMNIBOX_NAME,
329 IDS_FLAGS_PRERENDER_FROM_OMNIBOX_DESCRIPTION, 329 IDS_FLAGS_PRERENDER_FROM_OMNIBOX_DESCRIPTION,
330 kOsAll, 330 kOsAll,
331 MULTI_VALUE_TYPE(kPrerenderFromOmniboxChoices) 331 MULTI_VALUE_TYPE(kPrerenderFromOmniboxChoices)
332 }, 332 },
333 { 333 {
334 "panels", 334 "disable-panels",
335 IDS_FLAGS_DISABLE_PANELS_NAME, 335 IDS_FLAGS_DISABLE_PANELS_NAME,
336 IDS_FLAGS_DISABLE_PANELS_DESCRIPTION, 336 IDS_FLAGS_DISABLE_PANELS_DESCRIPTION,
337 kOsAll, 337 kOsAll,
338 SINGLE_VALUE_TYPE(switches::kDisablePanels) 338 SINGLE_VALUE_TYPE(switches::kDisablePanels)
339 }, 339 },
340 { 340 {
341 "enable-shortcuts-provider", 341 "enable-shortcuts-provider",
342 IDS_FLAGS_ENABLE_SHORTCUTS_PROVIDER, 342 IDS_FLAGS_ENABLE_SHORTCUTS_PROVIDER,
343 IDS_FLAGS_ENABLE_SHORTCUTS_PROVIDER_DESCRIPTION, 343 IDS_FLAGS_ENABLE_SHORTCUTS_PROVIDER_DESCRIPTION,
344 kOsAll, 344 kOsAll,
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after
865 } 865 }
866 866
867 const Experiment* GetExperiments(size_t* count) { 867 const Experiment* GetExperiments(size_t* count) {
868 *count = num_experiments; 868 *count = num_experiments;
869 return experiments; 869 return experiments;
870 } 870 }
871 871
872 } // namespace testing 872 } // namespace testing
873 873
874 } // namespace about_flags 874 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698