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

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

Issue 15881012: Implement safebrowsing download feedback service, enabled for dev & canary only. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win build Created 7 years, 6 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
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/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 1216 matching lines...) Expand 10 before | Expand all | Expand 10 after
1227 "safebrowsing-disable-download-protection"; 1227 "safebrowsing-disable-download-protection";
1228 1228
1229 // Disables safebrowsing feature that checks for blacklisted extensions. 1229 // Disables safebrowsing feature that checks for blacklisted extensions.
1230 const char kSbDisableExtensionBlacklist[] = 1230 const char kSbDisableExtensionBlacklist[] =
1231 "safebrowsing-disable-extension-blacklist"; 1231 "safebrowsing-disable-extension-blacklist";
1232 1232
1233 // Disables safebrowsing feature that provides a side-effect free whitelist. 1233 // Disables safebrowsing feature that provides a side-effect free whitelist.
1234 const char kSbDisableSideEffectFreeWhitelist[] = 1234 const char kSbDisableSideEffectFreeWhitelist[] =
1235 "safebrowsing-disable-side-effect-free-whitelist"; 1235 "safebrowsing-disable-side-effect-free-whitelist";
1236 1236
1237 // URL to send safebrowsing download feedback reports to.
1238 const char kSbDownloadFeedbackURL[] = "safebrowsing-download-feedback-url";
1239
1240 // Enable safebrowsing download feedback.
1241 const char kSbEnableDownloadFeedback[] =
1242 "safebrowsing-enable-download-feedback";
1243
1237 // Enables or disables extension scripts badges in the location bar. 1244 // Enables or disables extension scripts badges in the location bar.
1238 const char kScriptBadges[] = "script-badges"; 1245 const char kScriptBadges[] = "script-badges";
1239 1246
1240 // Enable or diable the "script bubble" icon in the URL bar that tells you how 1247 // Enable or diable the "script bubble" icon in the URL bar that tells you how
1241 // many extensions are running scripts on a page. 1248 // many extensions are running scripts on a page.
1242 const char kScriptBubble[] = "script-bubble"; 1249 const char kScriptBubble[] = "script-bubble";
1243 1250
1244 // Causes the process to run as a service process. 1251 // Causes the process to run as a service process.
1245 const char kServiceProcess[] = "service"; 1252 const char kServiceProcess[] = "service";
1246 1253
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
1600 1607
1601 // ----------------------------------------------------------------------------- 1608 // -----------------------------------------------------------------------------
1602 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1609 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1603 // 1610 //
1604 // You were going to just dump your switches here, weren't you? Instead, please 1611 // You were going to just dump your switches here, weren't you? Instead, please
1605 // put them in alphabetical order above, or in order inside the appropriate 1612 // put them in alphabetical order above, or in order inside the appropriate
1606 // ifdef at the bottom. The order should match the header. 1613 // ifdef at the bottom. The order should match the header.
1607 // ----------------------------------------------------------------------------- 1614 // -----------------------------------------------------------------------------
1608 1615
1609 } // namespace switches 1616 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698