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 r
ights reserved. | 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. |
9 * Copyright (C) 2005 Alexey Proskuryakov <ap@nypop.com> | 9 * Copyright (C) 2005 Alexey Proskuryakov <ap@nypop.com> |
10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 #include "core/page/ChromeClient.h" | 62 #include "core/page/ChromeClient.h" |
63 #include "core/page/FocusController.h" | 63 #include "core/page/FocusController.h" |
64 #include "core/page/Page.h" | 64 #include "core/page/Page.h" |
65 #include "core/page/scrolling/ScrollingCoordinator.h" | 65 #include "core/page/scrolling/ScrollingCoordinator.h" |
66 #include "core/paint/ObjectPainter.h" | 66 #include "core/paint/ObjectPainter.h" |
67 #include "core/paint/PaintInfo.h" | 67 #include "core/paint/PaintInfo.h" |
68 #include "core/paint/PaintLayer.h" | 68 #include "core/paint/PaintLayer.h" |
69 #include "core/paint/TransformRecorder.h" | 69 #include "core/paint/TransformRecorder.h" |
70 #include "core/svg/SVGDocumentExtensions.h" | 70 #include "core/svg/SVGDocumentExtensions.h" |
71 #include "platform/DragImage.h" | 71 #include "platform/DragImage.h" |
72 #include "platform/JSONValues.h" | |
73 #include "platform/PluginScriptForbiddenScope.h" | 72 #include "platform/PluginScriptForbiddenScope.h" |
74 #include "platform/RuntimeEnabledFeatures.h" | 73 #include "platform/RuntimeEnabledFeatures.h" |
75 #include "platform/ScriptForbiddenScope.h" | 74 #include "platform/ScriptForbiddenScope.h" |
76 #include "platform/graphics/GraphicsContext.h" | 75 #include "platform/graphics/GraphicsContext.h" |
77 #include "platform/graphics/StaticBitmapImage.h" | 76 #include "platform/graphics/StaticBitmapImage.h" |
78 #include "platform/graphics/paint/ClipRecorder.h" | 77 #include "platform/graphics/paint/ClipRecorder.h" |
79 #include "platform/graphics/paint/PaintController.h" | 78 #include "platform/graphics/paint/PaintController.h" |
80 #include "platform/graphics/paint/SkPictureBuilder.h" | 79 #include "platform/graphics/paint/SkPictureBuilder.h" |
81 #include "platform/graphics/paint/TransformDisplayItem.h" | 80 #include "platform/graphics/paint/TransformDisplayItem.h" |
| 81 #include "platform/json/JSONValues.h" |
82 #include "platform/plugins/PluginData.h" | 82 #include "platform/plugins/PluginData.h" |
83 #include "platform/text/TextStream.h" | 83 #include "platform/text/TextStream.h" |
84 #include "public/platform/InterfaceProvider.h" | 84 #include "public/platform/InterfaceProvider.h" |
85 #include "public/platform/WebFrameScheduler.h" | 85 #include "public/platform/WebFrameScheduler.h" |
86 #include "public/platform/WebScreenInfo.h" | 86 #include "public/platform/WebScreenInfo.h" |
87 #include "public/platform/WebViewScheduler.h" | 87 #include "public/platform/WebViewScheduler.h" |
88 #include "third_party/skia/include/core/SkImage.h" | 88 #include "third_party/skia/include/core/SkImage.h" |
89 #include "wtf/PtrUtil.h" | 89 #include "wtf/PtrUtil.h" |
90 #include "wtf/StdLibExtras.h" | 90 #include "wtf/StdLibExtras.h" |
91 #include <memory> | 91 #include <memory> |
(...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
858 m_frame->client()->frameBlameContext()->Enter(); | 858 m_frame->client()->frameBlameContext()->Enter(); |
859 } | 859 } |
860 | 860 |
861 ScopedFrameBlamer::~ScopedFrameBlamer() | 861 ScopedFrameBlamer::~ScopedFrameBlamer() |
862 { | 862 { |
863 if (m_frame && m_frame->client() && m_frame->client()->frameBlameContext()) | 863 if (m_frame && m_frame->client() && m_frame->client()->frameBlameContext()) |
864 m_frame->client()->frameBlameContext()->Leave(); | 864 m_frame->client()->frameBlameContext()->Leave(); |
865 } | 865 } |
866 | 866 |
867 } // namespace blink | 867 } // namespace blink |
OLD | NEW |