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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
456 | 456 |
457 void didAccessStyleResolver(); | 457 void didAccessStyleResolver(); |
458 | 458 |
459 void evaluateMediaQueryList(); | 459 void evaluateMediaQueryList(); |
460 | 460 |
461 // Never returns 0. | 461 // Never returns 0. |
462 FormController* formController(); | 462 FormController* formController(); |
463 Vector<String> formElementsState() const; | 463 Vector<String> formElementsState() const; |
464 void setStateForNewFormElements(const Vector<String>&); | 464 void setStateForNewFormElements(const Vector<String>&); |
465 | 465 |
466 FrameView* view() const; // can be NULL | 466 FrameView* view() const; // can be null |
467 Frame* frame() const { return m_frame; } // can be NULL | 467 Frame* frame() const { return m_frame; } // can be null |
468 Page* page() const; // can be NULL | 468 Page* page() const; // can be null |
469 Settings* settings() const; // can be NULL | 469 Settings* settings() const; // can be null |
| 470 |
| 471 float devicePixelRatio() const; |
470 | 472 |
471 PassRefPtr<Range> createRange(); | 473 PassRefPtr<Range> createRange(); |
472 | 474 |
473 PassRefPtr<NodeIterator> createNodeIterator(Node* root, ExceptionState&); | 475 PassRefPtr<NodeIterator> createNodeIterator(Node* root, ExceptionState&); |
474 PassRefPtr<NodeIterator> createNodeIterator(Node* root, unsigned whatToShow,
ExceptionState&); | 476 PassRefPtr<NodeIterator> createNodeIterator(Node* root, unsigned whatToShow,
ExceptionState&); |
475 PassRefPtr<NodeIterator> createNodeIterator(Node* root, unsigned whatToShow,
PassRefPtr<NodeFilter>, ExceptionState&); | 477 PassRefPtr<NodeIterator> createNodeIterator(Node* root, unsigned whatToShow,
PassRefPtr<NodeFilter>, ExceptionState&); |
476 PassRefPtr<NodeIterator> createNodeIterator(Node* root, unsigned whatToShow,
PassRefPtr<NodeFilter>, bool expandEntityReferences, ExceptionState&); | 478 PassRefPtr<NodeIterator> createNodeIterator(Node* root, unsigned whatToShow,
PassRefPtr<NodeFilter>, bool expandEntityReferences, ExceptionState&); |
477 | 479 |
478 PassRefPtr<TreeWalker> createTreeWalker(Node* root, ExceptionState&); | 480 PassRefPtr<TreeWalker> createTreeWalker(Node* root, ExceptionState&); |
479 PassRefPtr<TreeWalker> createTreeWalker(Node* root, unsigned whatToShow, Exc
eptionState&); | 481 PassRefPtr<TreeWalker> createTreeWalker(Node* root, unsigned whatToShow, Exc
eptionState&); |
(...skipping 963 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1443 inline bool Node::isDocumentNode() const | 1445 inline bool Node::isDocumentNode() const |
1444 { | 1446 { |
1445 return this == documentInternal(); | 1447 return this == documentInternal(); |
1446 } | 1448 } |
1447 | 1449 |
1448 Node* eventTargetNodeForDocument(Document*); | 1450 Node* eventTargetNodeForDocument(Document*); |
1449 | 1451 |
1450 } // namespace WebCore | 1452 } // namespace WebCore |
1451 | 1453 |
1452 #endif // Document_h | 1454 #endif // Document_h |
OLD | NEW |