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

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

Issue 2848243004: Clean up bindings/core/v8 (Part 2) (Closed)
Patch Set: Rebase 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_interface.py
diff --git a/third_party/WebKit/Source/bindings/scripts/v8_interface.py b/third_party/WebKit/Source/bindings/scripts/v8_interface.py
index 9ef03e6de0d48c0a0c9fa9dff79b530636a6d34c..c7f78dedea05811b0b9a11197f916dc879e174c2 100644
--- a/third_party/WebKit/Source/bindings/scripts/v8_interface.py
+++ b/third_party/WebKit/Source/bindings/scripts/v8_interface.py
@@ -52,7 +52,7 @@ from v8_utilities import (cpp_name_or_partial, cpp_name, has_extended_attribute_
INTERFACE_H_INCLUDES = frozenset([
'bindings/core/v8/GeneratedCodeHelper.h',
'bindings/core/v8/NativeValueTraits.h',
- 'bindings/core/v8/ScriptWrappable.h',
+ 'platform/bindings/ScriptWrappable.h',
'bindings/core/v8/ToV8ForCore.h',
'bindings/core/v8/V8BindingForCore.h',
'bindings/core/v8/V8DOMWrapper.h',
@@ -138,7 +138,7 @@ def origin_trial_features(interface, constants, attributes, methods):
feature['needs_instance'] = reduce(or_, (member.get('on_instance', False) for member in members))
if features:
- includes.add('bindings/core/v8/ScriptState.h')
+ includes.add('platform/bindings/ScriptState.h')
includes.add('core/origin_trials/OriginTrials.h')
return sorted(features)

Powered by Google App Engine
This is Rietveld 408576698