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/markup.cpp

Issue 1140153006: Remove Navigation Transitions from Blink. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Removed layout tests. Created 5 years, 7 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.h ('k') | Source/core/html/HTMLLinkElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/markup.cpp
diff --git a/Source/core/editing/markup.cpp b/Source/core/editing/markup.cpp
index 34d91e5a0b2a13528d9af0c53bf6708f2e667d5c..5a166041b1cf1edfc04957b399d1d994f39a99c8 100644
--- a/Source/core/editing/markup.cpp
+++ b/Source/core/editing/markup.cpp
@@ -699,17 +699,6 @@ void mergeWithNextTextNode(Text* textNode, ExceptionState& exceptionState)
textNext->remove(exceptionState);
}
-String createStyledMarkupForNavigationTransition(Node* node)
-{
- node->document().updateLayoutIgnorePendingStylesheets();
-
- StyledMarkupSerializer<EditingStrategy> serializer(ResolveAllURLs, AnnotateForNavigationTransition, Position(), Position(), 0);
- serializer.serializeNodes(node, NodeTraversal::nextSkippingChildren(*node));
-
- static const char* documentMarkup = "<!DOCTYPE html><meta name=\"viewport\" content=\"width=device-width, user-scalable=0\">";
- return documentMarkup + serializer.takeResults();
-}
-
-template class CORE_TEMPLATE_EXPORT CreateMarkupAlgorithm<EditingStrategy>;
+template class CORE_EXPORT CreateMarkupAlgorithm<EditingStrategy>;
}
« no previous file with comments | « Source/core/editing/markup.h ('k') | Source/core/html/HTMLLinkElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698