Chromium Code Reviews| Index: chrome/common/chrome_switches.cc |
| diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc |
| index cddfdc5f59259afc115b91cb1ea9f501014a052d..d55fde5de2db6fc52dc0e5aba6148a1a471a5e87 100644 |
| --- a/chrome/common/chrome_switches.cc |
| +++ b/chrome/common/chrome_switches.cc |
| @@ -300,6 +300,11 @@ const char kDisableOutOfProcessPac[] = "disable-out-of-process-pac"; |
| // for blacklisted sites. |
| const char kDisablePermissionsBlacklist[] = "disable-permissions-blacklist"; |
| +// Disables permission action reporting to Safe Browsing servers for |
| +// opted in users. |
|
raymes
2016/05/24 01:47:43
nit: fill 80 chars on each line
stefanocs
2016/05/24 03:00:08
Done.
|
| +const char kDisablePermissionActionReporting[] = |
| + "disable-permission-action-reporting"; |
| + |
| // Disable pop-up blocking. |
| const char kDisablePopupBlocking[] = "disable-popup-blocking"; |
| @@ -477,6 +482,11 @@ const char kDisablePanels[] = "disable-panels"; |
| // for blacklisted sites. |
| const char kEnablePermissionsBlacklist[] = "enable-permissions-blacklist"; |
| +// Enables permission action reporting to Safe Browsing servers for |
| +// opted in users. |
|
raymes
2016/05/24 01:47:43
nit: same here
stefanocs
2016/05/24 03:00:08
Done.
|
| +const char kEnablePermissionActionReporting[] = |
| + "enable-permission-action-reporting"; |
| + |
| // Enables a number of potentially annoying security features (strict mixed |
| // content mode, powerful feature restrictions, etc.) |
| const char kEnablePotentiallyAnnoyingSecurityFeatures[] = |