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 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
850 | 850 |
851 enum PendingSheetLayout { NoLayoutWithPendingSheets, DidLayoutWithPendingShe
ets, IgnoreLayoutWithPendingSheets }; | 851 enum PendingSheetLayout { NoLayoutWithPendingSheets, DidLayoutWithPendingShe
ets, IgnoreLayoutWithPendingSheets }; |
852 | 852 |
853 bool didLayoutWithPendingStylesheets() const { return m_pendingSheetLayout =
= DidLayoutWithPendingSheets; } | 853 bool didLayoutWithPendingStylesheets() const { return m_pendingSheetLayout =
= DidLayoutWithPendingSheets; } |
854 | 854 |
855 bool hasNodesWithPlaceholderStyle() const { return m_hasNodesWithPlaceholder
Style; } | 855 bool hasNodesWithPlaceholderStyle() const { return m_hasNodesWithPlaceholder
Style; } |
856 void setHasNodesWithPlaceholderStyle() { m_hasNodesWithPlaceholderStyle = tr
ue; } | 856 void setHasNodesWithPlaceholderStyle() { m_hasNodesWithPlaceholderStyle = tr
ue; } |
857 | 857 |
858 Vector<IconURL> iconURLs(int iconTypesMask); | 858 Vector<IconURL> iconURLs(int iconTypesMask); |
859 | 859 |
| 860 Color brandColor() const; |
| 861 |
860 // Returns the HTMLLinkElement currently in use for the Web Manifest. | 862 // Returns the HTMLLinkElement currently in use for the Web Manifest. |
861 // Returns null if there is no such element. | 863 // Returns null if there is no such element. |
862 HTMLLinkElement* linkManifest() const; | 864 HTMLLinkElement* linkManifest() const; |
863 | 865 |
864 void setUseSecureKeyboardEntryWhenActive(bool); | 866 void setUseSecureKeyboardEntryWhenActive(bool); |
865 bool useSecureKeyboardEntryWhenActive() const; | 867 bool useSecureKeyboardEntryWhenActive() const; |
866 | 868 |
867 void updateFocusAppearanceSoon(bool restorePreviousSelection); | 869 void updateFocusAppearanceSoon(bool restorePreviousSelection); |
868 void cancelFocusAppearanceUpdate(); | 870 void cancelFocusAppearanceUpdate(); |
869 | 871 |
(...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1459 inline bool Node::isDocumentNode() const | 1461 inline bool Node::isDocumentNode() const |
1460 { | 1462 { |
1461 return this == document(); | 1463 return this == document(); |
1462 } | 1464 } |
1463 | 1465 |
1464 Node* eventTargetNodeForDocument(Document*); | 1466 Node* eventTargetNodeForDocument(Document*); |
1465 | 1467 |
1466 } // namespace WebCore | 1468 } // namespace WebCore |
1467 | 1469 |
1468 #endif // Document_h | 1470 #endif // Document_h |
OLD | NEW |