| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> | 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> |
| 3 * 1999 Lars Knoll <knoll@kde.org> | 3 * 1999 Lars Knoll <knoll@kde.org> |
| 4 * 1999 Antti Koivisto <koivisto@kde.org> | 4 * 1999 Antti Koivisto <koivisto@kde.org> |
| 5 * 2000 Simon Hausmann <hausmann@kde.org> | 5 * 2000 Simon Hausmann <hausmann@kde.org> |
| 6 * 2000 Stefan Schimanski <1Stein@gmx.de> | 6 * 2000 Stefan Schimanski <1Stein@gmx.de> |
| 7 * 2001 George Staikos <staikos@kde.org> | 7 * 2001 George Staikos <staikos@kde.org> |
| 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All | 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All |
| 9 * rights reserved. | 9 * rights reserved. |
| 10 * Copyright (C) 2005 Alexey Proskuryakov <ap@nypop.com> | 10 * Copyright (C) 2005 Alexey Proskuryakov <ap@nypop.com> |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 #include "core/loader/FrameLoadRequest.h" | 63 #include "core/loader/FrameLoadRequest.h" |
| 64 #include "core/loader/FrameLoaderClient.h" | 64 #include "core/loader/FrameLoaderClient.h" |
| 65 #include "core/loader/NavigationScheduler.h" | 65 #include "core/loader/NavigationScheduler.h" |
| 66 #include "core/page/ChromeClient.h" | 66 #include "core/page/ChromeClient.h" |
| 67 #include "core/page/FocusController.h" | 67 #include "core/page/FocusController.h" |
| 68 #include "core/page/Page.h" | 68 #include "core/page/Page.h" |
| 69 #include "core/page/scrolling/ScrollingCoordinator.h" | 69 #include "core/page/scrolling/ScrollingCoordinator.h" |
| 70 #include "core/paint/ObjectPainter.h" | 70 #include "core/paint/ObjectPainter.h" |
| 71 #include "core/paint/PaintInfo.h" | 71 #include "core/paint/PaintInfo.h" |
| 72 #include "core/paint/PaintLayer.h" | 72 #include "core/paint/PaintLayer.h" |
| 73 #include "core/paint/PaintLayerPainter.h" |
| 73 #include "core/paint/TransformRecorder.h" | 74 #include "core/paint/TransformRecorder.h" |
| 74 #include "core/svg/SVGDocumentExtensions.h" | 75 #include "core/svg/SVGDocumentExtensions.h" |
| 75 #include "core/timing/Performance.h" | 76 #include "core/timing/Performance.h" |
| 76 #include "platform/DragImage.h" | 77 #include "platform/DragImage.h" |
| 77 #include "platform/PluginScriptForbiddenScope.h" | 78 #include "platform/PluginScriptForbiddenScope.h" |
| 78 #include "platform/RuntimeEnabledFeatures.h" | 79 #include "platform/RuntimeEnabledFeatures.h" |
| 79 #include "platform/ScriptForbiddenScope.h" | 80 #include "platform/ScriptForbiddenScope.h" |
| 80 #include "platform/graphics/GraphicsContext.h" | 81 #include "platform/graphics/GraphicsContext.h" |
| 81 #include "platform/graphics/StaticBitmapImage.h" | 82 #include "platform/graphics/StaticBitmapImage.h" |
| 82 #include "platform/graphics/paint/ClipRecorder.h" | 83 #include "platform/graphics/paint/ClipRecorder.h" |
| (...skipping 836 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 919 if (m_frame && m_frame->client() && m_frame->client()->frameBlameContext()) | 920 if (m_frame && m_frame->client() && m_frame->client()->frameBlameContext()) |
| 920 m_frame->client()->frameBlameContext()->Enter(); | 921 m_frame->client()->frameBlameContext()->Enter(); |
| 921 } | 922 } |
| 922 | 923 |
| 923 ScopedFrameBlamer::~ScopedFrameBlamer() { | 924 ScopedFrameBlamer::~ScopedFrameBlamer() { |
| 924 if (m_frame && m_frame->client() && m_frame->client()->frameBlameContext()) | 925 if (m_frame && m_frame->client() && m_frame->client()->frameBlameContext()) |
| 925 m_frame->client()->frameBlameContext()->Leave(); | 926 m_frame->client()->frameBlameContext()->Leave(); |
| 926 } | 927 } |
| 927 | 928 |
| 928 } // namespace blink | 929 } // namespace blink |
| OLD | NEW |