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

Unified Diff: Source/bindings/core/v8/CustomElementBinding.h

Issue 552733002: bindings: Cleans up V8{HTML,SVG}ElementWrapperFactory. (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
« no previous file with comments | « no previous file | Source/bindings/core/v8/CustomElementBinding.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/CustomElementBinding.h
diff --git a/Source/bindings/core/v8/CustomElementBinding.h b/Source/bindings/core/v8/CustomElementBinding.h
index ccfcdd1c243a49ed5780e4bf2cf8c41249d3f9d8..c30bfab764a930a47482afe8d287e48542de8ca6 100644
--- a/Source/bindings/core/v8/CustomElementBinding.h
+++ b/Source/bindings/core/v8/CustomElementBinding.h
@@ -37,25 +37,21 @@
namespace blink {
-struct WrapperTypeInfo;
-
class CustomElementBinding {
public:
- static PassOwnPtr<CustomElementBinding> create(v8::Isolate*, v8::Handle<v8::Object> prototype, const WrapperTypeInfo*);
+ static PassOwnPtr<CustomElementBinding> create(v8::Isolate*, v8::Handle<v8::Object> prototype);
~CustomElementBinding() { }
v8::Handle<v8::Object> prototype() { return m_prototype.newLocal(m_isolate); }
- const WrapperTypeInfo* wrapperType() { return m_wrapperType; }
private:
- CustomElementBinding(v8::Isolate*, v8::Handle<v8::Object> prototype, const WrapperTypeInfo*);
+ CustomElementBinding(v8::Isolate*, v8::Handle<v8::Object> prototype);
v8::Isolate* m_isolate;
ScopedPersistent<v8::Object> m_prototype;
- const WrapperTypeInfo* m_wrapperType;
};
-}
+} // namespace blink
#endif // CustomElementBinding_h
« no previous file with comments | « no previous file | Source/bindings/core/v8/CustomElementBinding.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698