Index: chrome/tools/extract_actions.py |
diff --git a/chrome/tools/extract_actions.py b/chrome/tools/extract_actions.py |
index 09bab23dd1a0faafe0c00e7a4f4e4f1d4cd12c44..3f1db644504b0ff24abe27f91855bb042ff310ef 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. |