| 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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 StyleSheetList* styleSheets(); | 381 StyleSheetList* styleSheets(); |
| 382 | 382 |
| 383 StyleEngine& styleEngine() { ASSERT(m_styleEngine.get()); return *m_styleEng
ine.get(); } | 383 StyleEngine& styleEngine() { ASSERT(m_styleEngine.get()); return *m_styleEng
ine.get(); } |
| 384 | 384 |
| 385 bool gotoAnchorNeededAfterStylesheetsLoad() { return m_gotoAnchorNeededAfter
StylesheetsLoad; } | 385 bool gotoAnchorNeededAfterStylesheetsLoad() { return m_gotoAnchorNeededAfter
StylesheetsLoad; } |
| 386 void setGotoAnchorNeededAfterStylesheetsLoad(bool b) { m_gotoAnchorNeededAft
erStylesheetsLoad = b; } | 386 void setGotoAnchorNeededAfterStylesheetsLoad(bool b) { m_gotoAnchorNeededAft
erStylesheetsLoad = b; } |
| 387 | 387 |
| 388 // FIXME: Switch all callers of resolverChanged to these or better ones and
then make them | 388 // FIXME: Switch all callers of resolverChanged to these or better ones and
then make them |
| 389 // do something smarter. | 389 // do something smarter. |
| 390 void removedStyleSheet(StyleSheet*, StyleResolverUpdateMode = FullStyleUpdat
e); | 390 void removedStyleSheet(StyleSheet*, StyleResolverUpdateMode = FullStyleUpdat
e); |
| 391 void addedStyleSheet(StyleSheet*); | |
| 392 void modifiedStyleSheet(StyleSheet*, StyleResolverUpdateMode = FullStyleUpda
te); | 391 void modifiedStyleSheet(StyleSheet*, StyleResolverUpdateMode = FullStyleUpda
te); |
| 393 void changedSelectorWatch(); | 392 void changedSelectorWatch(); |
| 394 | 393 |
| 395 void scheduleUseShadowTreeUpdate(SVGUseElement&); | 394 void scheduleUseShadowTreeUpdate(SVGUseElement&); |
| 396 void unscheduleUseShadowTreeUpdate(SVGUseElement&); | 395 void unscheduleUseShadowTreeUpdate(SVGUseElement&); |
| 397 | 396 |
| 398 // FIXME: SVG filters should change to store the filter on the ComputedStyle | 397 // FIXME: SVG filters should change to store the filter on the ComputedStyle |
| 399 // instead of the LayoutObject so we can get rid of this hack. | 398 // instead of the LayoutObject so we can get rid of this hack. |
| 400 void scheduleSVGFilterLayerUpdateHack(Element&); | 399 void scheduleSVGFilterLayerUpdateHack(Element&); |
| 401 void unscheduleSVGFilterLayerUpdateHack(Element&); | 400 void unscheduleSVGFilterLayerUpdateHack(Element&); |
| (...skipping 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1447 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1446 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1448 | 1447 |
| 1449 } // namespace blink | 1448 } // namespace blink |
| 1450 | 1449 |
| 1451 #ifndef NDEBUG | 1450 #ifndef NDEBUG |
| 1452 // Outside the WebCore namespace for ease of invocation from gdb. | 1451 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1453 CORE_EXPORT void showLiveDocumentInstances(); | 1452 CORE_EXPORT void showLiveDocumentInstances(); |
| 1454 #endif | 1453 #endif |
| 1455 | 1454 |
| 1456 #endif // Document_h | 1455 #endif // Document_h |
| OLD | NEW |