summaryrefslogtreecommitdiffstats
path: root/chrome/tools/extract_actions.py
diff options
context:
space:
mode:
authorpetkov@chromium.org <petkov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-19 22:38:14 +0000
committerpetkov@chromium.org <petkov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-19 22:38:14 +0000
commit54e9f754958cf07fbaae5c64b45be02f0985796a (patch)
tree62ade1745c5a57fc5a4ed3c6122294572b46a64b /chrome/tools/extract_actions.py
parentbad501a897dedabc5f85785a5867abe8cb7dfcfd (diff)
downloadchromium_src-54e9f754958cf07fbaae5c64b45be02f0985796a.zip
chromium_src-54e9f754958cf07fbaae5c64b45be02f0985796a.tar.gz
chromium_src-54e9f754958cf07fbaae5c64b45be02f0985796a.tar.bz2
Put UMA user action added by Chrome OS CL#7864 in list of valid actions.
Included "Cryptohome.PKCS11InitFail" to list of valid actions, and ran extract_actions.py in order to update hashes in chromeactions.txt. BUG=chromium-os:19536 TEST=None Review URL: http://codereview.chromium.org/7961001 Patch from Bruno Rocha <bpontes@chromium.org>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101849 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools/extract_actions.py')
-rwxr-xr-xchrome/tools/extract_actions.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/tools/extract_actions.py b/chrome/tools/extract_actions.py
index 2ae25a4..aab051f 100755
--- a/chrome/tools/extract_actions.py
+++ b/chrome/tools/extract_actions.py
@@ -219,6 +219,9 @@ def AddChromeOSActions(actions):
actions.add('Updater.ServerCertificateChanged')
actions.add('Updater.ServerCertificateFailed')
+ # Actions sent by Chrome OS cryptohome.
+ actions.add('Cryptohome.PKCS11InitFail')
+
def GrepForActions(path, actions):
"""Grep a source file for calls to UserMetrics functions.