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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 2934010: Add link to privacy dashboard from sync options panel behind command line fla... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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 | « chrome/common/chrome_switches.h ('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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after
792 const char kShowIcons[] = "show-icons"; 792 const char kShowIcons[] = "show-icons";
793 793
794 // Renders a border around composited Render Layers to help debug and study 794 // Renders a border around composited Render Layers to help debug and study
795 // layer compositing. 795 // layer compositing.
796 const char kShowCompositedLayerBorders[] = "show-composited-layer-borders"; 796 const char kShowCompositedLayerBorders[] = "show-composited-layer-borders";
797 797
798 // Visibly render a border around paint rects in the web page to help debug 798 // Visibly render a border around paint rects in the web page to help debug
799 // and study painting behavior. 799 // and study painting behavior.
800 const char kShowPaintRects[] = "show-paint-rects"; 800 const char kShowPaintRects[] = "show-paint-rects";
801 801
802 // Whether to show the link to the Google Privacy Dashboard on the Sync options
803 // panel.
804 const char kShowPrivacyDashboardLink[] = "show-privacy-dashboard-link";
805
802 // Change the DCHECKS to dump memory and continue instead of displaying error 806 // Change the DCHECKS to dump memory and continue instead of displaying error
803 // dialog. This is valid only in Release mode when --enable-dcheck is 807 // dialog. This is valid only in Release mode when --enable-dcheck is
804 // specified. 808 // specified.
805 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck"; 809 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck";
806 810
807 // Replaces the buffered data source for <audio> and <video> with a simplified 811 // Replaces the buffered data source for <audio> and <video> with a simplified
808 // resource loader that downloads the entire resource into memory. 812 // resource loader that downloads the entire resource into memory.
809 // 813 //
810 // TODO(scherkus): remove --simple-data-source when our media resource loading 814 // TODO(scherkus): remove --simple-data-source when our media resource loading
811 // is cleaned up and playback testing completed. 815 // is cleaned up and playback testing completed.
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
1081 1085
1082 // ----------------------------------------------------------------------------- 1086 // -----------------------------------------------------------------------------
1083 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1087 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1084 // 1088 //
1085 // You were going to just dump your switches here, weren't you? Instead, 1089 // You were going to just dump your switches here, weren't you? Instead,
1086 // please put them in alphabetical order above, or in order inside the 1090 // please put them in alphabetical order above, or in order inside the
1087 // appropriate ifdef at the bottom. The order should match the header. 1091 // appropriate ifdef at the bottom. The order should match the header.
1088 // ----------------------------------------------------------------------------- 1092 // -----------------------------------------------------------------------------
1089 1093
1090 } // namespace switches 1094 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698