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

Unified Diff: Source/core/css/Counter.h

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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: Source/core/css/Counter.h
diff --git a/Source/core/css/Counter.h b/Source/core/css/Counter.h
index 2df7ece07936d8990cbbd1bacb50a2a1cd594610..a05cc6d52ceaabd9379a890e8cfe46683e4ce8b5 100644
--- a/Source/core/css/Counter.h
+++ b/Source/core/css/Counter.h
@@ -65,10 +65,7 @@ private:
Counter(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> identifier, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> listStyle, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> separator)
: m_identifier(identifier)
, m_listStyle(listStyle)
- , m_separator(separator)
- {
- ScriptWrappable::init(this);
- }
+ , m_separator(separator) { }
RefPtrWillBeMember<CSSPrimitiveValue> m_identifier; // string
RefPtrWillBeMember<CSSPrimitiveValue> m_listStyle; // ident

Powered by Google App Engine
This is Rietveld 408576698