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

Unified Diff: third_party/WebKit/Source/build/scripts/make_instrumenting_probes.py

Issue 2329463004: ABANDONED CL: Changes needed to make things compile after running rewrite_to_chrome_style tool. (Closed)
Patch Set: More fixes - things build fine at this point. Created 3 years, 8 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: third_party/WebKit/Source/build/scripts/make_instrumenting_probes.py
diff --git a/third_party/WebKit/Source/build/scripts/make_instrumenting_probes.py b/third_party/WebKit/Source/build/scripts/make_instrumenting_probes.py
index 0b7105acdb14371a87b7029e78f42d37e1b9c486..d769096f565788201878459b2500e88ca5fc5e2d 100644
--- a/third_party/WebKit/Source/build/scripts/make_instrumenting_probes.py
+++ b/third_party/WebKit/Source/build/scripts/make_instrumenting_probes.py
@@ -24,6 +24,7 @@ third_party_dir = os.path.normpath(os.path.join(module_path, os.pardir, os.pardi
sys.path.insert(1, third_party_dir)
import jinja2
+from name_utilities import method_name
def _json5_loads(lines):
# Use json5.loads when json5 is available. Currently we use simple
@@ -245,6 +246,7 @@ template_context = {
"files": files,
"agents": build_observers(),
"config": config,
+ "method_name": method_name,
"name": base_name,
"input_file": os.path.basename(input_path)
}

Powered by Google App Engine
This is Rietveld 408576698