| Index: chrome/tools/extract_actions.py
|
| diff --git a/chrome/tools/extract_actions.py b/chrome/tools/extract_actions.py
|
| index c5285400538de7d73ba14c33187c0ab197d0f979..1a6c8c18b872a7892db9e72309c260041cd6be21 100755
|
| --- a/chrome/tools/extract_actions.py
|
| +++ b/chrome/tools/extract_actions.py
|
| @@ -133,7 +133,8 @@ def AddComputedActions(actions):
|
| # Actions for safe_browsing_blocking_page.cc.
|
| for interstitial in ('Phishing', 'Malware', 'Multiple'):
|
| for action in ('Show', 'Proceed', 'DontProceed', 'ForcedDontProceed'):
|
| - actions.add('SBInterstitial%s%s' % (interstitial, action))
|
| + for group in ('', '_V1', '_V2'):
|
| + actions.add('SBInterstitial%s%s%s' % (interstitial, action, group))
|
|
|
| # Actions for language_options_handler.cc (Chrome OS specific).
|
| for input_method_id in INPUT_METHOD_IDS:
|
|
|