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

Unified Diff: sky/engine/bindings/scripts/v8_callback_interface.py

Issue 681963002: Remove heap/*.cpp files (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « sky/engine/bindings/core/v8/V8Binding.h ('k') | sky/engine/core/css/resolver/MatchedPropertiesCache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/bindings/scripts/v8_callback_interface.py
diff --git a/sky/engine/bindings/scripts/v8_callback_interface.py b/sky/engine/bindings/scripts/v8_callback_interface.py
index 865d4e93e98aece46befe7781787609f543a7c29..9e30e888ec0def05abd3566ce52bc76f2abb3c96 100644
--- a/sky/engine/bindings/scripts/v8_callback_interface.py
+++ b/sky/engine/bindings/scripts/v8_callback_interface.py
@@ -63,7 +63,7 @@ def cpp_type(idl_type):
return 'void'
# Callbacks use raw pointers, so raw_type=True
raw_cpp_type = idl_type.cpp_type_args(raw_type=True)
- if raw_cpp_type.startswith(('Vector', 'HeapVector', 'Vector')):
+ if raw_cpp_type.startswith(('Vector', 'Vector')):
return 'const %s&' % raw_cpp_type
return raw_cpp_type
« no previous file with comments | « sky/engine/bindings/core/v8/V8Binding.h ('k') | sky/engine/core/css/resolver/MatchedPropertiesCache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698