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

Unified Diff: Source/web/WebLocalFrameImpl.cpp

Issue 430823002: Drop editing's createFullMarkup() function (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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/markup.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebLocalFrameImpl.cpp
diff --git a/Source/web/WebLocalFrameImpl.cpp b/Source/web/WebLocalFrameImpl.cpp
index b052ed726f259bcd1677e81f63d0948ac1b6407a..d1e6871f713032cae5341445814ff7533b4b0c6d 100644
--- a/Source/web/WebLocalFrameImpl.cpp
+++ b/Source/web/WebLocalFrameImpl.cpp
@@ -1463,7 +1463,7 @@ WebString WebLocalFrameImpl::contentAsMarkup() const
{
if (!frame())
return WebString();
- return createFullMarkup(frame()->document());
+ return createMarkup(frame()->document(), IncludeNode, 0);
adamk 2014/07/30 17:16:18 Why do you need the third argument? It looks like
Inactive 2014/07/30 17:22:29 You're right. It seems I don't need IncludeNode ei
Inactive 2014/07/30 17:25:10 Done.
}
WebString WebLocalFrameImpl::renderTreeAsText(RenderAsTextControls toShow) const
« no previous file with comments | « Source/core/editing/markup.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698