| 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 | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All |
| 7 * rights reserved. | 7 * rights reserved. |
| 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
| 9 * (http://www.torchmobile.com/) | 9 * (http://www.torchmobile.com/) |
| 10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| (...skipping 1216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1227 enum HttpRefreshType { HttpRefreshFromHeader, HttpRefreshFromMetaTag }; | 1227 enum HttpRefreshType { HttpRefreshFromHeader, HttpRefreshFromMetaTag }; |
| 1228 void maybeHandleHttpRefresh(const String&, HttpRefreshType); | 1228 void maybeHandleHttpRefresh(const String&, HttpRefreshType); |
| 1229 | 1229 |
| 1230 void updateSecurityOrigin(PassRefPtr<SecurityOrigin>); | 1230 void updateSecurityOrigin(PassRefPtr<SecurityOrigin>); |
| 1231 | 1231 |
| 1232 void setHasViewportUnits() { m_hasViewportUnits = true; } | 1232 void setHasViewportUnits() { m_hasViewportUnits = true; } |
| 1233 bool hasViewportUnits() const { return m_hasViewportUnits; } | 1233 bool hasViewportUnits() const { return m_hasViewportUnits; } |
| 1234 void notifyResizeForViewportUnits(); | 1234 void notifyResizeForViewportUnits(); |
| 1235 | 1235 |
| 1236 void updateActiveStyle(); | 1236 void updateActiveStyle(); |
| 1237 void updateStyleInvalidationIfNeeded(); | |
| 1238 | 1237 |
| 1239 DECLARE_VIRTUAL_TRACE(); | 1238 DECLARE_VIRTUAL_TRACE(); |
| 1240 | 1239 |
| 1241 DECLARE_VIRTUAL_TRACE_WRAPPERS(); | 1240 DECLARE_VIRTUAL_TRACE_WRAPPERS(); |
| 1242 | 1241 |
| 1243 AtomicString convertLocalName(const AtomicString&); | 1242 AtomicString convertLocalName(const AtomicString&); |
| 1244 | 1243 |
| 1245 void platformColorsChanged(); | 1244 void platformColorsChanged(); |
| 1246 | 1245 |
| 1247 DOMTimerCoordinator* timers() final; | 1246 DOMTimerCoordinator* timers() final; |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1362 bool shouldScheduleLayoutTreeUpdate() const; | 1361 bool shouldScheduleLayoutTreeUpdate() const; |
| 1363 void scheduleLayoutTreeUpdate(); | 1362 void scheduleLayoutTreeUpdate(); |
| 1364 | 1363 |
| 1365 bool needsFullLayoutTreeUpdate() const; | 1364 bool needsFullLayoutTreeUpdate() const; |
| 1366 | 1365 |
| 1367 void inheritHtmlAndBodyElementStyles(StyleRecalcChange); | 1366 void inheritHtmlAndBodyElementStyles(StyleRecalcChange); |
| 1368 | 1367 |
| 1369 void updateUseShadowTreesIfNeeded(); | 1368 void updateUseShadowTreesIfNeeded(); |
| 1370 void evaluateMediaQueryListIfNeeded(); | 1369 void evaluateMediaQueryListIfNeeded(); |
| 1371 | 1370 |
| 1371 void updateStyleInvalidationIfNeeded(); |
| 1372 void updateStyle(); | 1372 void updateStyle(); |
| 1373 void notifyLayoutTreeOfSubtreeChanges(); | 1373 void notifyLayoutTreeOfSubtreeChanges(); |
| 1374 | 1374 |
| 1375 void detachParser(); | 1375 void detachParser(); |
| 1376 | 1376 |
| 1377 void beginLifecycleUpdatesIfRenderingReady(); | 1377 void beginLifecycleUpdatesIfRenderingReady(); |
| 1378 | 1378 |
| 1379 bool isDocument() const final { return true; } | 1379 bool isDocument() const final { return true; } |
| 1380 | 1380 |
| 1381 void childrenChanged(const ChildrenChange&) override; | 1381 void childrenChanged(const ChildrenChange&) override; |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1718 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1718 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1719 | 1719 |
| 1720 } // namespace blink | 1720 } // namespace blink |
| 1721 | 1721 |
| 1722 #ifndef NDEBUG | 1722 #ifndef NDEBUG |
| 1723 // Outside the WebCore namespace for ease of invocation from gdb. | 1723 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1724 CORE_EXPORT void showLiveDocumentInstances(); | 1724 CORE_EXPORT void showLiveDocumentInstances(); |
| 1725 #endif | 1725 #endif |
| 1726 | 1726 |
| 1727 #endif // Document_h | 1727 #endif // Document_h |
| OLD | NEW |