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

Side by Side 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, 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
9 * Copyright (C) 2011 Google Inc. All rights reserved. 9 * Copyright (C) 2011 Google Inc. All rights reserved.
10 * 10 *
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 bool hasSVGRootNode() const; 414 bool hasSVGRootNode() const;
415 415
416 bool isFrameSet() const; 416 bool isFrameSet() const;
417 417
418 bool isSrcdocDocument() const { return m_isSrcdocDocument; } 418 bool isSrcdocDocument() const { return m_isSrcdocDocument; }
419 bool isMobileDocument() const { return m_isMobileDocument; } 419 bool isMobileDocument() const { return m_isMobileDocument; }
420 420
421 bool isTransitionDocument() const { return m_isTransitionDocument; } 421 bool isTransitionDocument() const { return m_isTransitionDocument; }
422 void setIsTransitionDocument() { m_isTransitionDocument = true; } 422 void setIsTransitionDocument() { m_isTransitionDocument = true; }
423 423
424 struct TransitionElementData {
425 String scope;
426 String markup;
427 };
428 void getTransitionElementData(Vector<TransitionElementData>*, ExceptionState &);
429
424 StyleResolver* styleResolver() const; 430 StyleResolver* styleResolver() const;
425 StyleResolver& ensureStyleResolver() const; 431 StyleResolver& ensureStyleResolver() const;
426 432
427 bool isViewSource() const { return m_isViewSource; } 433 bool isViewSource() const { return m_isViewSource; }
428 void setIsViewSource(bool); 434 void setIsViewSource(bool);
429 435
430 bool sawElementsInKnownNamespaces() const { return m_sawElementsInKnownNames paces; } 436 bool sawElementsInKnownNamespaces() const { return m_sawElementsInKnownNames paces; }
431 437
432 bool isRenderingReady() const { return haveImportsLoaded() && haveStylesheet sLoaded(); } 438 bool isRenderingReady() const { return haveImportsLoaded() && haveStylesheet sLoaded(); }
433 bool isScriptExecutionReady() const { return isRenderingReady(); } 439 bool isScriptExecutionReady() const { return isRenderingReady(); }
(...skipping 1022 matching lines...) Expand 10 before | Expand all | Expand 10 after
1456 inline bool Node::isDocumentNode() const 1462 inline bool Node::isDocumentNode() const
1457 { 1463 {
1458 return this == document(); 1464 return this == document();
1459 } 1465 }
1460 1466
1461 Node* eventTargetNodeForDocument(Document*); 1467 Node* eventTargetNodeForDocument(Document*);
1462 1468
1463 } // namespace WebCore 1469 } // namespace WebCore
1464 1470
1465 #endif // Document_h 1471 #endif // Document_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698