summaryrefslogtreecommitdiffstats
path: root/chrome/tools/extract_actions.py
diff options
context:
space:
mode:
authorkaznacheev@chromium.org <kaznacheev@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-07 12:18:52 +0000
committerkaznacheev@chromium.org <kaznacheev@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-07 12:18:52 +0000
commit19b0ce2e8bcdc76a7c79792db97e091756c917a0 (patch)
tree72c59763541c5393d6ec4bb938061ba7fc08573d /chrome/tools/extract_actions.py
parent1192e438dfe34041154e337ec900a44abc29a312 (diff)
downloadchromium_src-19b0ce2e8bcdc76a7c79792db97e091756c917a0.zip
chromium_src-19b0ce2e8bcdc76a7c79792db97e091756c917a0.tar.gz
chromium_src-19b0ce2e8bcdc76a7c79792db97e091756c917a0.tar.bz2
Adding ChromeOS Photo Editor user actions
This is to support http://codereview.chromium.org/8819013/ BUG=chromium-os:23750 TEST= Review URL: http://codereview.chromium.org/8822013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113380 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools/extract_actions.py')
-rwxr-xr-xchrome/tools/extract_actions.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/tools/extract_actions.py b/chrome/tools/extract_actions.py
index 09bab23..3f1db64 100755
--- a/chrome/tools/extract_actions.py
+++ b/chrome/tools/extract_actions.py
@@ -224,13 +224,15 @@ def AddChromeOSActions(actions):
actions.add('Cryptohome.PKCS11InitFail')
def AddExtensionActions(actions):
- """Add actions reported by extensions via chrome.experimental.metrics API.
+ """Add actions reported by extensions via chrome.metricsPrivate API.
Arguments:
actions: set of actions to add to.
"""
# Actions sent by Chrome OS File Browser.
actions.add('FileBrowser.CreateNewFolder')
+ actions.add('FileBrowser.PhotoEditor.Edit')
+ actions.add('FileBrowser.PhotoEditor.View')
def GrepForActions(path, actions):
"""Grep a source file for calls to UserMetrics functions.