Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Side by Side Diff: third_party/WebKit/Source/core/frame/LocalFrame.cpp

Issue 2497633002: Move PaintResult enum out of PaintLayerPainter.h into PaintResult.h (Closed)
Patch Set: Adjust includes Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698