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

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

Issue 65043011: Have DOMImplementation take the Document argument by reference (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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/core/dom/DOMImplementation.cpp » ('j') | Source/core/dom/DOMImplementation.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DOMImplementation.h
diff --git a/Source/core/dom/DOMImplementation.h b/Source/core/dom/DOMImplementation.h
index 5fb1f514bf33a6e27f173395ca67469fbbda612e..76852d3ef05c00bd27116705c0e4542a59f95fd9 100644
--- a/Source/core/dom/DOMImplementation.h
+++ b/Source/core/dom/DOMImplementation.h
@@ -42,11 +42,11 @@ class KURL;
class DOMImplementation : public ScriptWrappable {
WTF_MAKE_FAST_ALLOCATED;
public:
- static PassOwnPtr<DOMImplementation> create(Document* document) { return adoptPtr(new DOMImplementation(document)); }
+ static PassOwnPtr<DOMImplementation> create(Document& document) { return adoptPtr(new DOMImplementation(document)); }
- void ref() { m_document->ref(); }
- void deref() { m_document->deref(); }
- Document* document() { return m_document; }
+ void ref() { m_document.ref(); }
+ void deref() { m_document.deref(); }
+ Document* document() { return &m_document; }
// DOM methods & attributes for DOMImplementation
static bool hasFeature(const String& feature, const String& version);
@@ -69,9 +69,9 @@ public:
static bool isTextMIMEType(const String& MIMEType);
private:
- explicit DOMImplementation(Document*);
+ explicit DOMImplementation(Document&);
- Document* m_document;
+ Document& m_document;
};
} // namespace WebCore
« no previous file with comments | « no previous file | Source/core/dom/DOMImplementation.cpp » ('j') | Source/core/dom/DOMImplementation.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698