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

Unified Diff: Source/bindings/dart/DartCustomElementBinding.h

Issue 27769002: Fixing custom element type extensions to have correct native type (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: Created 7 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 | « no previous file | Source/bindings/dart/DartCustomElementBinding.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/dart/DartCustomElementBinding.h
diff --git a/Source/bindings/dart/DartCustomElementBinding.h b/Source/bindings/dart/DartCustomElementBinding.h
index 98e702f3c8d142c90d4b92866b942b5529ef58fe..3b5577325a510b64384da06f5612773057c0d692 100644
--- a/Source/bindings/dart/DartCustomElementBinding.h
+++ b/Source/bindings/dart/DartCustomElementBinding.h
@@ -40,13 +40,15 @@ namespace WebCore {
class DartCustomElementBinding {
public:
- static PassOwnPtr<DartCustomElementBinding> create(Dart_Handle customType);
+ static PassOwnPtr<DartCustomElementBinding> create(Dart_Handle customType, intptr_t nativeClassId);
Dart_PersistentHandle customType() { return m_customType; }
+ intptr_t nativeClassId() { return m_nativeClassId; }
private:
- DartCustomElementBinding(Dart_Handle customType);
+ DartCustomElementBinding(Dart_Handle customType, intptr_t nativeClassId);
Dart_PersistentHandle m_customType;
+ intptr_t m_nativeClassId;
};
}
« no previous file with comments | « no previous file | Source/bindings/dart/DartCustomElementBinding.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698