| 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)
|
| }
|
|
|