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

Unified Diff: third_party/WebKit/Source/bindings/templates/dictionary_impl.cpp.tmpl

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/bindings/templates/dictionary_impl.cpp.tmpl
diff --git a/third_party/WebKit/Source/bindings/templates/dictionary_impl.cpp.tmpl b/third_party/WebKit/Source/bindings/templates/dictionary_impl.cpp.tmpl
index 46b5735d58d80996f15bbd51566bc6d16a204b2c..f9865bb7afa4f63cf8ebbfdfecbed1ec94f3f9f8 100644
--- a/third_party/WebKit/Source/bindings/templates/dictionary_impl.cpp.tmpl
+++ b/third_party/WebKit/Source/bindings/templates/dictionary_impl.cpp.tmpl
@@ -51,10 +51,10 @@ void {{cpp_class}}::{{member.null_setter_name}}() {
DEFINE_TRACE({{cpp_class}}) {
{% for member in members if member.is_traceable %}
- visitor->trace(m_{{member.cpp_name}});
+ visitor->Trace(m_{{member.cpp_name}});
{% endfor %}
{% if parent_cpp_class %}
- {{parent_cpp_class}}::trace(visitor);
+ {{parent_cpp_class}}::Trace(visitor);
{% endif %}
}

Powered by Google App Engine
This is Rietveld 408576698