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

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

Issue 281383006: Navigation transitions: Added createStyledMarkupForNavigationTransition (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update from other review Created 6 years, 6 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/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index 9a7b8c56cacc0cce2a13b76fe7d20707ece7a9e2..cd794e6241ffabe24685e7c15f9a5896f5e04797 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -427,6 +427,12 @@ public:
bool isTransitionDocument() const { return m_isTransitionDocument; }
void setIsTransitionDocument() { m_isTransitionDocument = true; }
+ struct TransitionElementData {
+ String scope;
+ String markup;
+ };
+ void getTransitionElementData(Vector<TransitionElementData>&, ExceptionState&);
+
StyleResolver* styleResolver() const;
StyleResolver& ensureStyleResolver() const;

Powered by Google App Engine
This is Rietveld 408576698