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

Unified Diff: Source/core/dom/Element.h

Issue 182243002: Allow the implementation to return references instead of pointers to the bindings (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 10 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/dom/Element.h
diff --git a/Source/core/dom/Element.h b/Source/core/dom/Element.h
index 8ad04997a14e84ba28b6b35d3d5ca27ab81f024e..97dab82ce0efbd0b40825c7dd30be4599ce860f7 100644
--- a/Source/core/dom/Element.h
+++ b/Source/core/dom/Element.h
@@ -433,9 +433,9 @@ public:
bool matches(const String& selectors, ExceptionState&);
virtual bool shouldAppearIndeterminate() const { return false; }
- DOMTokenList* classList();
+ DOMTokenList& classList();
- DOMStringMap* dataset();
+ DOMStringMap& dataset();
virtual bool isMediaElement() const { return false; }
« no previous file with comments | « Source/bindings/tests/results/V8TestSpecialOperationsIdentifierRaisesException.cpp ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698