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

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: Missing NULL check Created 6 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
Index: Source/core/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index fbfe1ae53427681451529ef04b1af55f856bc0d1..afdab1b65e54620f25ae880377cbdb1644fc70e5 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -421,6 +421,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