| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (C) 1997 Martin Jones (mjones@kde.org) | 2 Copyright (C) 1997 Martin Jones (mjones@kde.org) |
| 3 (C) 1998 Waldo Bastian (bastian@kde.org) | 3 (C) 1998 Waldo Bastian (bastian@kde.org) |
| 4 (C) 1998, 1999 Torben Weis (weis@kde.org) | 4 (C) 1998, 1999 Torben Weis (weis@kde.org) |
| 5 (C) 1999 Lars Knoll (knoll@kde.org) | 5 (C) 1999 Lars Knoll (knoll@kde.org) |
| 6 (C) 1999 Antti Koivisto (koivisto@kde.org) | 6 (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. | 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. |
| 8 | 8 |
| 9 This library is free software; you can redistribute it and/or | 9 This library is free software; you can redistribute it and/or |
| 10 modify it under the terms of the GNU Library General Public | 10 modify it under the terms of the GNU Library General Public |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "core/rendering/PaintPhase.h" | 28 #include "core/rendering/PaintPhase.h" |
| 29 #include "platform/FrameWidget.h" | 29 #include "platform/FrameWidget.h" |
| 30 #include "platform/HostWindow.h" | 30 #include "platform/HostWindow.h" |
| 31 #include "platform/RuntimeEnabledFeatures.h" | 31 #include "platform/RuntimeEnabledFeatures.h" |
| 32 #include "platform/Widget.h" | 32 #include "platform/Widget.h" |
| 33 #include "platform/Widget.h" | 33 #include "platform/Widget.h" |
| 34 #include "platform/geometry/LayoutRect.h" | 34 #include "platform/geometry/LayoutRect.h" |
| 35 #include "platform/graphics/Color.h" | 35 #include "platform/graphics/Color.h" |
| 36 #include "platform/scroll/ScrollableArea.h" | 36 #include "platform/scroll/ScrollableArea.h" |
| 37 #include "wtf/Forward.h" | 37 #include "wtf/Forward.h" |
| 38 #include "wtf/HashSet.h" |
| 38 #include "wtf/OwnPtr.h" | 39 #include "wtf/OwnPtr.h" |
| 39 #include "wtf/text/WTFString.h" | 40 #include "wtf/text/WTFString.h" |
| 40 | 41 |
| 41 namespace blink { | 42 namespace blink { |
| 42 | 43 |
| 43 class DocumentLifecycle; | 44 class DocumentLifecycle; |
| 44 class Cursor; | 45 class Cursor; |
| 45 class Element; | 46 class Element; |
| 46 class FloatSize; | 47 class FloatSize; |
| 47 class LocalFrame; | 48 class LocalFrame; |
| (...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 m_view->setCanInvalidatePaintDuringPerformLayout(m_originalValue); | 449 m_view->setCanInvalidatePaintDuringPerformLayout(m_originalValue); |
| 449 } | 450 } |
| 450 private: | 451 private: |
| 451 FrameView* m_view; | 452 FrameView* m_view; |
| 452 bool m_originalValue; | 453 bool m_originalValue; |
| 453 }; | 454 }; |
| 454 | 455 |
| 455 } // namespace blink | 456 } // namespace blink |
| 456 | 457 |
| 457 #endif // FrameView_h | 458 #endif // FrameView_h |
| OLD | NEW |