Chromium Code Reviews| 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)) |
|
Ilya Sherman
2012/08/21 03:46:53
Note that the variations dashboard is not going to
mattm
2012/08/21 05:12:14
Yeah, I added histograms for these counts too.
|
| # Actions for language_options_handler.cc (Chrome OS specific). |
| for input_method_id in INPUT_METHOD_IDS: |