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 926 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
937 void unregisterForPageCacheSuspensionCallbacks(Element*); | 937 void unregisterForPageCacheSuspensionCallbacks(Element*); |
938 | 938 |
939 void documentWillBecomeInactive(); | 939 void documentWillBecomeInactive(); |
940 void documentWillSuspendForPageCache(); | 940 void documentWillSuspendForPageCache(); |
941 void documentDidResumeFromPageCache(); | 941 void documentDidResumeFromPageCache(); |
942 | 942 |
943 void registerForMediaVolumeCallbacks(Element*); | 943 void registerForMediaVolumeCallbacks(Element*); |
944 void unregisterForMediaVolumeCallbacks(Element*); | 944 void unregisterForMediaVolumeCallbacks(Element*); |
945 void mediaVolumeDidChange(); | 945 void mediaVolumeDidChange(); |
946 | 946 |
947 void storageBlockingStateDidChange(); | |
948 | |
949 #if ENABLE(VIDEO_TRACK) | 947 #if ENABLE(VIDEO_TRACK) |
950 void registerForCaptionPreferencesChangedCallbacks(Element*); | 948 void registerForCaptionPreferencesChangedCallbacks(Element*); |
951 void unregisterForCaptionPreferencesChangedCallbacks(Element*); | 949 void unregisterForCaptionPreferencesChangedCallbacks(Element*); |
952 void captionPreferencesChanged(); | 950 void captionPreferencesChanged(); |
953 #endif | 951 #endif |
954 | 952 |
955 void setShouldCreateRenderers(bool); | 953 void setShouldCreateRenderers(bool); |
956 bool shouldCreateRenderers(); | 954 bool shouldCreateRenderers(); |
957 | 955 |
958 void setDecoder(PassRefPtr<TextResourceDecoder>); | 956 void setDecoder(PassRefPtr<TextResourceDecoder>); |
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1601 trackForDebugging(); | 1599 trackForDebugging(); |
1602 #endif | 1600 #endif |
1603 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); | 1601 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); |
1604 } | 1602 } |
1605 | 1603 |
1606 Node* eventTargetNodeForDocument(Document*); | 1604 Node* eventTargetNodeForDocument(Document*); |
1607 | 1605 |
1608 } // namespace WebCore | 1606 } // namespace WebCore |
1609 | 1607 |
1610 #endif // Document_h | 1608 #endif // Document_h |
OLD | NEW |