Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: tools/metrics/actions/extract_actions.py

Issue 1009583004: Add UMA histograms and logging for bad IPC message handling (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/metrics/actions/extract_actions.py
diff --git a/tools/metrics/actions/extract_actions.py b/tools/metrics/actions/extract_actions.py
index 7484711c62af1db970994e3b9a070c0b5acd74e8..cc68ebe5b102eefc8618cb7a5452be9802ac835c 100755
--- a/tools/metrics/actions/extract_actions.py
+++ b/tools/metrics/actions/extract_actions.py
@@ -583,6 +583,9 @@ def AddLiteralActions(actions):
components_root = os.path.normpath(os.path.join(REPOSITORY_ROOT,
'components'))
WalkDirectory(components_root, actions, EXTENSIONS, GrepForActions)
+ extensions_root = os.path.normpath(os.path.join(REPOSITORY_ROOT,
+ 'extensions'))
+ WalkDirectory(extensions_root, actions, EXTENSIONS, GrepForActions)
net_root = os.path.normpath(os.path.join(REPOSITORY_ROOT, 'net'))
WalkDirectory(net_root, actions, EXTENSIONS, GrepForActions)
webkit_root = os.path.normpath(os.path.join(REPOSITORY_ROOT, 'webkit'))

Powered by Google App Engine
This is Rietveld 408576698