| 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 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 935 void unregisterForPageCacheSuspensionCallbacks(Element*); | 935 void unregisterForPageCacheSuspensionCallbacks(Element*); |
| 936 | 936 |
| 937 void documentWillBecomeInactive(); | 937 void documentWillBecomeInactive(); |
| 938 void documentWillSuspendForPageCache(); | 938 void documentWillSuspendForPageCache(); |
| 939 void documentDidResumeFromPageCache(); | 939 void documentDidResumeFromPageCache(); |
| 940 | 940 |
| 941 void registerForMediaVolumeCallbacks(Element*); | 941 void registerForMediaVolumeCallbacks(Element*); |
| 942 void unregisterForMediaVolumeCallbacks(Element*); | 942 void unregisterForMediaVolumeCallbacks(Element*); |
| 943 void mediaVolumeDidChange(); | 943 void mediaVolumeDidChange(); |
| 944 | 944 |
| 945 void registerForPrivateBrowsingStateChangedCallbacks(Element*); | |
| 946 void unregisterForPrivateBrowsingStateChangedCallbacks(Element*); | |
| 947 void storageBlockingStateDidChange(); | 945 void storageBlockingStateDidChange(); |
| 948 void privateBrowsingStateDidChange(); | |
| 949 | 946 |
| 950 #if ENABLE(VIDEO_TRACK) | 947 #if ENABLE(VIDEO_TRACK) |
| 951 void registerForCaptionPreferencesChangedCallbacks(Element*); | 948 void registerForCaptionPreferencesChangedCallbacks(Element*); |
| 952 void unregisterForCaptionPreferencesChangedCallbacks(Element*); | 949 void unregisterForCaptionPreferencesChangedCallbacks(Element*); |
| 953 void captionPreferencesChanged(); | 950 void captionPreferencesChanged(); |
| 954 #endif | 951 #endif |
| 955 | 952 |
| 956 void setShouldCreateRenderers(bool); | 953 void setShouldCreateRenderers(bool); |
| 957 bool shouldCreateRenderers(); | 954 bool shouldCreateRenderers(); |
| 958 | 955 |
| (...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1421 bool m_annotatedRegionsDirty; | 1418 bool m_annotatedRegionsDirty; |
| 1422 | 1419 |
| 1423 HashMap<String, RefPtr<HTMLCanvasElement> > m_cssCanvasElements; | 1420 HashMap<String, RefPtr<HTMLCanvasElement> > m_cssCanvasElements; |
| 1424 | 1421 |
| 1425 bool m_createRenderers; | 1422 bool m_createRenderers; |
| 1426 bool m_inPageCache; | 1423 bool m_inPageCache; |
| 1427 Vector<IconURL> m_iconURLs; | 1424 Vector<IconURL> m_iconURLs; |
| 1428 | 1425 |
| 1429 HashSet<Element*> m_documentSuspensionCallbackElements; | 1426 HashSet<Element*> m_documentSuspensionCallbackElements; |
| 1430 HashSet<Element*> m_mediaVolumeCallbackElements; | 1427 HashSet<Element*> m_mediaVolumeCallbackElements; |
| 1431 HashSet<Element*> m_privateBrowsingStateChangedElements; | |
| 1432 #if ENABLE(VIDEO_TRACK) | 1428 #if ENABLE(VIDEO_TRACK) |
| 1433 HashSet<Element*> m_captionPreferencesChangedElements; | 1429 HashSet<Element*> m_captionPreferencesChangedElements; |
| 1434 #endif | 1430 #endif |
| 1435 | 1431 |
| 1436 HashMap<StringImpl*, Element*, CaseFoldingHash> m_elementsByAccessKey; | 1432 HashMap<StringImpl*, Element*, CaseFoldingHash> m_elementsByAccessKey; |
| 1437 bool m_accessKeyMapValid; | 1433 bool m_accessKeyMapValid; |
| 1438 | 1434 |
| 1439 OwnPtr<SelectorQueryCache> m_selectorQueryCache; | 1435 OwnPtr<SelectorQueryCache> m_selectorQueryCache; |
| 1440 | 1436 |
| 1441 bool m_useSecureKeyboardEntryWhenActive; | 1437 bool m_useSecureKeyboardEntryWhenActive; |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1603 trackForDebugging(); | 1599 trackForDebugging(); |
| 1604 #endif | 1600 #endif |
| 1605 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); | 1601 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); |
| 1606 } | 1602 } |
| 1607 | 1603 |
| 1608 Node* eventTargetNodeForDocument(Document*); | 1604 Node* eventTargetNodeForDocument(Document*); |
| 1609 | 1605 |
| 1610 } // namespace WebCore | 1606 } // namespace WebCore |
| 1611 | 1607 |
| 1612 #endif // Document_h | 1608 #endif // Document_h |
| OLD | NEW |