| OLD | NEW |
| 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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 float devicePixelRatio() const; | 458 float devicePixelRatio() const; |
| 459 | 459 |
| 460 PassRefPtrWillBeRawPtr<Range> createRange(); | 460 PassRefPtrWillBeRawPtr<Range> createRange(); |
| 461 | 461 |
| 462 PassRefPtrWillBeRawPtr<NodeIterator> createNodeIterator(Node* root, unsigned
whatToShow, PassRefPtrWillBeRawPtr<NodeFilter>, ExceptionState&); | 462 PassRefPtrWillBeRawPtr<NodeIterator> createNodeIterator(Node* root, unsigned
whatToShow, PassRefPtrWillBeRawPtr<NodeFilter>, ExceptionState&); |
| 463 PassRefPtrWillBeRawPtr<TreeWalker> createTreeWalker(Node* root, unsigned wha
tToShow, PassRefPtrWillBeRawPtr<NodeFilter>, ExceptionState&); | 463 PassRefPtrWillBeRawPtr<TreeWalker> createTreeWalker(Node* root, unsigned wha
tToShow, PassRefPtrWillBeRawPtr<NodeFilter>, ExceptionState&); |
| 464 | 464 |
| 465 // Special support for editing | 465 // Special support for editing |
| 466 PassRefPtrWillBeRawPtr<Text> createEditingTextNode(const String&); | 466 PassRefPtrWillBeRawPtr<Text> createEditingTextNode(const String&); |
| 467 | 467 |
| 468 void setupFontBuilder(RenderStyle* documentStyle); | 468 void createFont(RenderStyle* documentStyle); |
| 469 | 469 |
| 470 bool needsRenderTreeUpdate() const; | 470 bool needsRenderTreeUpdate() const; |
| 471 void updateRenderTreeIfNeeded() { updateRenderTree(NoChange); } | 471 void updateRenderTreeIfNeeded() { updateRenderTree(NoChange); } |
| 472 void updateRenderTreeForNodeIfNeeded(Node*); | 472 void updateRenderTreeForNodeIfNeeded(Node*); |
| 473 void updateLayout(); | 473 void updateLayout(); |
| 474 enum RunPostLayoutTasks { | 474 enum RunPostLayoutTasks { |
| 475 RunPostLayoutTasksAsyhnchronously, | 475 RunPostLayoutTasksAsyhnchronously, |
| 476 RunPostLayoutTasksSynchronously, | 476 RunPostLayoutTasksSynchronously, |
| 477 }; | 477 }; |
| 478 void updateLayoutIgnorePendingStylesheets(RunPostLayoutTasks = RunPostLayout
TasksAsyhnchronously); | 478 void updateLayoutIgnorePendingStylesheets(RunPostLayoutTasks = RunPostLayout
TasksAsyhnchronously); |
| (...skipping 951 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1430 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1430 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1431 | 1431 |
| 1432 } // namespace blink | 1432 } // namespace blink |
| 1433 | 1433 |
| 1434 #ifndef NDEBUG | 1434 #ifndef NDEBUG |
| 1435 // Outside the WebCore namespace for ease of invocation from gdb. | 1435 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1436 void showLiveDocumentInstances(); | 1436 void showLiveDocumentInstances(); |
| 1437 #endif | 1437 #endif |
| 1438 | 1438 |
| 1439 #endif // Document_h | 1439 #endif // Document_h |
| OLD | NEW |