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

Unified Diff: third_party/WebKit/Source/bindings/scripts/v8_types.py

Issue 2804753005: Rewrite references to "wtf/" to "platform/wtf/" in bindings. (Closed)
Patch Set: 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/bindings/scripts/v8_types.py
diff --git a/third_party/WebKit/Source/bindings/scripts/v8_types.py b/third_party/WebKit/Source/bindings/scripts/v8_types.py
index a8dd9a4770595f157868bd41d3fc0189fdf8e8cd..8bbe2763d317bd238c6a65a4a092335bd1bfda25 100644
--- a/third_party/WebKit/Source/bindings/scripts/v8_types.py
+++ b/third_party/WebKit/Source/bindings/scripts/v8_types.py
@@ -449,11 +449,11 @@ def impl_includes_for_type(idl_type, interfaces_info):
if native_array_element_type:
includes_for_type.update(impl_includes_for_type(
native_array_element_type, interfaces_info))
- includes_for_type.add('wtf/Vector.h')
+ includes_for_type.add('platform/wtf/Vector.h')
base_idl_type = idl_type.base_type
if idl_type.is_string_type:
- includes_for_type.add('wtf/text/WTFString.h')
+ includes_for_type.add('platform/wtf/text/WTFString.h')
if base_idl_type in interfaces_info:
interface_info = interfaces_info[base_idl_type]
includes_for_type.add(interface_info['include_path'])

Powered by Google App Engine
This is Rietveld 408576698