diff options
Diffstat (limited to 'chrome/tools/extract_actions.py')
-rwxr-xr-x | chrome/tools/extract_actions.py | 3 |
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: |