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

Unified Diff: Source/core/html/imports/LinkImport.cpp

Issue 171333003: Pass implementation object to supplemental classes by reference (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/html/imports/LinkImport.cpp
diff --git a/Source/core/html/imports/LinkImport.cpp b/Source/core/html/imports/LinkImport.cpp
index a9f02f81dd6de21fead600cce2d8109400b8567e..967c30f7f3ec24e024bbf9ad21e93b8a23c4a2c5 100644
--- a/Source/core/html/imports/LinkImport.cpp
+++ b/Source/core/html/imports/LinkImport.cpp
@@ -74,7 +74,7 @@ void LinkImport::process()
if (!m_owner->document().import()) {
ASSERT(m_owner->document().frame()); // The document should be the master.
- HTMLImportsController::provideTo(&m_owner->document());
+ HTMLImportsController::provideTo(m_owner->document());
}
LinkRequestBuilder builder(m_owner);

Powered by Google App Engine
This is Rietveld 408576698