diff options
author | tim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-12 18:35:53 +0000 |
---|---|---|
committer | tim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-12 18:35:53 +0000 |
commit | 5e7f0237e94bd78155547ac52c55923539193c93 (patch) | |
tree | a78c4e7a2d0489660c49675641a7678fbc4ea0e4 /chrome/common | |
parent | fe57c8c948f71b1990b91324870184d28ffd334f (diff) | |
download | chromium_src-5e7f0237e94bd78155547ac52c55923539193c93.zip chromium_src-5e7f0237e94bd78155547ac52c55923539193c93.tar.gz chromium_src-5e7f0237e94bd78155547ac52c55923539193c93.tar.bz2 |
Add link to privacy dashboard from sync options panel behind command line flag.
BUG=48844
TEST=Open options > Personal Stuff, see link to dashboard.
Review URL: http://codereview.chromium.org/2934010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52112 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/chrome_switches.cc | 4 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 6140243..83caf08 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -807,6 +807,10 @@ const char kShowCompositedLayerBorders[] = "show-composited-layer-borders"; // and study painting behavior. const char kShowPaintRects[] = "show-paint-rects"; +// Whether to show the link to the Google Privacy Dashboard on the Sync options +// panel. +const char kShowPrivacyDashboardLink[] = "show-privacy-dashboard-link"; + // Change the DCHECKS to dump memory and continue instead of displaying error // dialog. This is valid only in Release mode when --enable-dcheck is // specified. diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index 97eb92d..87755e7 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -232,6 +232,7 @@ extern const char kServiceAccountLsid[]; extern const char kShowCompositedLayerBorders[]; extern const char kShowIcons[]; extern const char kShowPaintRects[]; +extern const char kShowPrivacyDashboardLink[]; extern const char kSilentDumpOnDCHECK[]; extern const char kSimpleDataSource[]; extern const char kSingleProcess[]; |