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 892 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
903 BeforeUnloadEventCompleted, | 903 BeforeUnloadEventCompleted, |
904 PageHideInProgress, | 904 PageHideInProgress, |
905 UnloadEventInProgress, | 905 UnloadEventInProgress, |
906 UnloadEventHandled | 906 UnloadEventHandled |
907 }; | 907 }; |
908 bool loadEventStillNeeded() const { return m_loadEventProgress == LoadEventN
otRun; } | 908 bool loadEventStillNeeded() const { return m_loadEventProgress == LoadEventN
otRun; } |
909 bool processingLoadEvent() const { return m_loadEventProgress == LoadEventIn
Progress; } | 909 bool processingLoadEvent() const { return m_loadEventProgress == LoadEventIn
Progress; } |
910 bool loadEventFinished() const { return m_loadEventProgress >= LoadEventComp
leted; } | 910 bool loadEventFinished() const { return m_loadEventProgress >= LoadEventComp
leted; } |
911 bool unloadStarted() const { return m_loadEventProgress >= PageHideInProgres
s; } | 911 bool unloadStarted() const { return m_loadEventProgress >= PageHideInProgres
s; } |
912 bool processingBeforeUnload() const { return m_loadEventProgress == BeforeUn
loadEventInProgress; } | 912 bool processingBeforeUnload() const { return m_loadEventProgress == BeforeUn
loadEventInProgress; } |
913 void suppressLoadEvent() { m_loadEventProgress = LoadEventCompleted; } | 913 void suppressLoadEvent(); |
914 | 914 |
915 void setContainsPlugins() { m_containsPlugins = true; } | 915 void setContainsPlugins() { m_containsPlugins = true; } |
916 bool containsPlugins() const { return m_containsPlugins; } | 916 bool containsPlugins() const { return m_containsPlugins; } |
917 | 917 |
918 virtual bool isContextThread() const override final; | 918 virtual bool isContextThread() const override final; |
919 virtual bool isJSExecutionForbidden() const override final { return false; } | 919 virtual bool isJSExecutionForbidden() const override final { return false; } |
920 | 920 |
921 bool containsValidityStyleRules() const { return m_containsValidityStyleRule
s; } | 921 bool containsValidityStyleRules() const { return m_containsValidityStyleRule
s; } |
922 void setContainsValidityStyleRules() { m_containsValidityStyleRules = true;
} | 922 void setContainsValidityStyleRules() { m_containsValidityStyleRules = true;
} |
923 | 923 |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
976 | 976 |
977 bool haveImportsLoaded() const; | 977 bool haveImportsLoaded() const; |
978 void didLoadAllImports(); | 978 void didLoadAllImports(); |
979 | 979 |
980 void adjustFloatQuadsForScrollAndAbsoluteZoom(Vector<FloatQuad>&, RenderObje
ct&); | 980 void adjustFloatQuadsForScrollAndAbsoluteZoom(Vector<FloatQuad>&, RenderObje
ct&); |
981 void adjustFloatRectForScrollAndAbsoluteZoom(FloatRect&, RenderObject&); | 981 void adjustFloatRectForScrollAndAbsoluteZoom(FloatRect&, RenderObject&); |
982 | 982 |
983 bool hasActiveParser(); | 983 bool hasActiveParser(); |
984 unsigned activeParserCount() { return m_activeParserCount; } | 984 unsigned activeParserCount() { return m_activeParserCount; } |
985 void incrementActiveParserCount() { ++m_activeParserCount; } | 985 void incrementActiveParserCount() { ++m_activeParserCount; } |
986 void decrementActiveParserCount(); | 986 void decrementActiveParserCount() { --m_activeParserCount; } |
987 | 987 |
988 void setContextFeatures(ContextFeatures&); | 988 void setContextFeatures(ContextFeatures&); |
989 ContextFeatures& contextFeatures() const { return *m_contextFeatures; } | 989 ContextFeatures& contextFeatures() const { return *m_contextFeatures; } |
990 | 990 |
991 ElementDataCache* elementDataCache() { return m_elementDataCache.get(); } | 991 ElementDataCache* elementDataCache() { return m_elementDataCache.get(); } |
992 | 992 |
993 void didLoadAllScriptBlockingResources(); | 993 void didLoadAllScriptBlockingResources(); |
994 void didRemoveAllPendingStylesheet(); | 994 void didRemoveAllPendingStylesheet(); |
995 void clearStyleResolver(); | 995 void clearStyleResolver(); |
996 | 996 |
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1430 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1430 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
1431 | 1431 |
1432 } // namespace blink | 1432 } // namespace blink |
1433 | 1433 |
1434 #ifndef NDEBUG | 1434 #ifndef NDEBUG |
1435 // Outside the WebCore namespace for ease of invocation from gdb. | 1435 // Outside the WebCore namespace for ease of invocation from gdb. |
1436 void showLiveDocumentInstances(); | 1436 void showLiveDocumentInstances(); |
1437 #endif | 1437 #endif |
1438 | 1438 |
1439 #endif // Document_h | 1439 #endif // Document_h |
OLD | NEW |