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

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

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/css/resolver/StyleResolver.cpp ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index ee9d577ff51e91983510b05ef3891871ea1ce451..ea7f64e3b762cbcff13cb65f18ba956eacbf15b6 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -387,24 +387,6 @@ public:
bool isSrcdocDocument() const { return m_isSrcdocDocument; }
bool isMobileDocument() const { return m_isMobileDocument; }
- bool isTransitionDocument() const { return m_isTransitionDocument; }
- void setIsTransitionDocument(bool isTransitionDocument) { m_isTransitionDocument = isTransitionDocument; }
- void hideTransitionElements(const AtomicString& cssSelector);
- void showTransitionElements(const AtomicString& cssSelector);
-
- struct TransitionElement {
- String id;
- IntRect rect;
- };
-
- struct TransitionElementData {
- String scope;
- String selector;
- String markup;
- Vector<TransitionElement> elements;
- };
- void getTransitionElementData(Vector<TransitionElementData>&);
-
StyleResolver* styleResolver() const;
StyleResolver& ensureStyleResolver() const;
@@ -1182,8 +1164,6 @@ private:
using EventFactorySet = HashSet<OwnPtr<EventFactoryBase>>;
static EventFactorySet& eventFactories();
- void updateElementOpacity(const AtomicString& cssSelector, double opacity);
-
void setNthIndexCache(NthIndexCache* nthIndexCache) { ASSERT(!m_nthIndexCache || !nthIndexCache); m_nthIndexCache = nthIndexCache; }
DocumentLifecycle m_lifecycle;
@@ -1348,7 +1328,6 @@ private:
bool m_sawElementsInKnownNamespaces;
bool m_isSrcdocDocument;
bool m_isMobileDocument;
- bool m_isTransitionDocument;
LayoutView* m_layoutView;
« no previous file with comments | « Source/core/css/resolver/StyleResolver.cpp ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698