summaryrefslogtreecommitdiffstats
path: root/chrome/tools/extract_actions.py
diff options
context:
space:
mode:
authormattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-10 04:13:00 +0000
committermattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-10 04:13:00 +0000
commitb9ee6d77b1d931f855c8d6df2a8aa7282ca7447f (patch)
treeb39a90454fb97bbd2c0c5e4be00ed0e5b8fcdd71 /chrome/tools/extract_actions.py
parent87acd75bdecea5a79802960457fce1b3bbcea5c9 (diff)
downloadchromium_src-b9ee6d77b1d931f855c8d6df2a8aa7282ca7447f.zip
chromium_src-b9ee6d77b1d931f855c8d6df2a8aa7282ca7447f.tar.gz
chromium_src-b9ee6d77b1d931f855c8d6df2a8aa7282ca7447f.tar.bz2
Remove SBInterstitial field trial. Make V2 the default.
BUG=143999, 148870 Review URL: https://chromiumcodereview.appspot.com/11358057 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167056 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools/extract_actions.py')
-rwxr-xr-xchrome/tools/extract_actions.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/tools/extract_actions.py b/chrome/tools/extract_actions.py
index 96544a3..fc2e40d 100755
--- a/chrome/tools/extract_actions.py
+++ b/chrome/tools/extract_actions.py
@@ -133,8 +133,7 @@ def AddComputedActions(actions):
# Actions for safe_browsing_blocking_page.cc.
for interstitial in ('Phishing', 'Malware', 'Multiple'):
for action in ('Show', 'Proceed', 'DontProceed', 'ForcedDontProceed'):
- for group in ('', '_V1', '_V2'):
- actions.add('SBInterstitial%s%s%s' % (interstitial, action, group))
+ actions.add('SBInterstitial%s%s' % (interstitial, action))
# Actions for language_options_handler.cc (Chrome OS specific).
for input_method_id in INPUT_METHOD_IDS: