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

Unified Diff: Source/core/editing/WrapContentsInDummySpanCommand.cpp

Issue 23822003: Have EditCommand classes deal with Document references, not pointers (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | « Source/core/editing/UnlinkCommand.cpp ('k') | Source/core/page/DragController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/WrapContentsInDummySpanCommand.cpp
diff --git a/Source/core/editing/WrapContentsInDummySpanCommand.cpp b/Source/core/editing/WrapContentsInDummySpanCommand.cpp
index bd53e33053367095b1dad45f094c67e7978e1f38..eee37da2591a665cce1b14ad9628fccf03858285 100644
--- a/Source/core/editing/WrapContentsInDummySpanCommand.cpp
+++ b/Source/core/editing/WrapContentsInDummySpanCommand.cpp
@@ -33,7 +33,7 @@
namespace WebCore {
WrapContentsInDummySpanCommand::WrapContentsInDummySpanCommand(PassRefPtr<Element> element)
- : SimpleEditCommand(&element->document())
+ : SimpleEditCommand(element->document())
, m_element(element)
{
ASSERT(m_element);
@@ -54,7 +54,7 @@ void WrapContentsInDummySpanCommand::executeApply()
void WrapContentsInDummySpanCommand::doApply()
{
- m_dummySpan = createStyleSpanElement(document());
+ m_dummySpan = createStyleSpanElement(&document());
executeApply();
}
« no previous file with comments | « Source/core/editing/UnlinkCommand.cpp ('k') | Source/core/page/DragController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698