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 824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
835 Vector<IconURL> iconURLs(int iconTypesMask); | 835 Vector<IconURL> iconURLs(int iconTypesMask); |
836 | 836 |
837 void setUseSecureKeyboardEntryWhenActive(bool); | 837 void setUseSecureKeyboardEntryWhenActive(bool); |
838 bool useSecureKeyboardEntryWhenActive() const; | 838 bool useSecureKeyboardEntryWhenActive() const; |
839 | 839 |
840 void updateFocusAppearanceSoon(bool restorePreviousSelection); | 840 void updateFocusAppearanceSoon(bool restorePreviousSelection); |
841 void cancelFocusAppearanceUpdate(); | 841 void cancelFocusAppearanceUpdate(); |
842 | 842 |
843 // Extension for manipulating canvas drawing contexts for use in CSS | 843 // Extension for manipulating canvas drawing contexts for use in CSS |
844 CanvasRenderingContext* getCSSCanvasContext(const String& type, const String
& name, int width, int height); | 844 CanvasRenderingContext* getCSSCanvasContext(const String& type, const String
& name, int width, int height); |
845 HTMLCanvasElement* getCSSCanvasElement(const String& name); | 845 HTMLCanvasElement& getCSSCanvasElement(const String& name); |
846 | 846 |
847 bool isDNSPrefetchEnabled() const { return m_isDNSPrefetchEnabled; } | 847 bool isDNSPrefetchEnabled() const { return m_isDNSPrefetchEnabled; } |
848 void parseDNSPrefetchControlHeader(const String&); | 848 void parseDNSPrefetchControlHeader(const String&); |
849 | 849 |
850 // FIXME(crbug.com/305497): This should be removed once DOMWindow is an Exec
utionContext. | 850 // FIXME(crbug.com/305497): This should be removed once DOMWindow is an Exec
utionContext. |
851 virtual void postTask(PassOwnPtr<ExecutionContextTask>) OVERRIDE; // Execute
s the task on context's thread asynchronously. | 851 virtual void postTask(PassOwnPtr<ExecutionContextTask>) OVERRIDE; // Execute
s the task on context's thread asynchronously. |
852 | 852 |
853 virtual void tasksWereSuspended() OVERRIDE FINAL; | 853 virtual void tasksWereSuspended() OVERRIDE FINAL; |
854 virtual void tasksWereResumed() OVERRIDE FINAL; | 854 virtual void tasksWereResumed() OVERRIDE FINAL; |
855 virtual void suspendScheduledTasks() OVERRIDE FINAL; | 855 virtual void suspendScheduledTasks() OVERRIDE FINAL; |
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1396 inline bool Node::isDocumentNode() const | 1396 inline bool Node::isDocumentNode() const |
1397 { | 1397 { |
1398 return this == document(); | 1398 return this == document(); |
1399 } | 1399 } |
1400 | 1400 |
1401 Node* eventTargetNodeForDocument(Document*); | 1401 Node* eventTargetNodeForDocument(Document*); |
1402 | 1402 |
1403 } // namespace WebCore | 1403 } // namespace WebCore |
1404 | 1404 |
1405 #endif // Document_h | 1405 #endif // Document_h |
OLD | NEW |