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

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

Issue 2843503002: scheduler: Move WebFrameScheduler and WebScheduler into Blink (Closed)
Patch Set: Build fix Created 3 years, 8 months 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
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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 #include "platform/graphics/GraphicsContext.h" 85 #include "platform/graphics/GraphicsContext.h"
86 #include "platform/graphics/StaticBitmapImage.h" 86 #include "platform/graphics/StaticBitmapImage.h"
87 #include "platform/graphics/paint/ClipRecorder.h" 87 #include "platform/graphics/paint/ClipRecorder.h"
88 #include "platform/graphics/paint/PaintCanvas.h" 88 #include "platform/graphics/paint/PaintCanvas.h"
89 #include "platform/graphics/paint/PaintController.h" 89 #include "platform/graphics/paint/PaintController.h"
90 #include "platform/graphics/paint/PaintRecordBuilder.h" 90 #include "platform/graphics/paint/PaintRecordBuilder.h"
91 #include "platform/graphics/paint/TransformDisplayItem.h" 91 #include "platform/graphics/paint/TransformDisplayItem.h"
92 #include "platform/json/JSONValues.h" 92 #include "platform/json/JSONValues.h"
93 #include "platform/loader/fetch/ResourceFetcher.h" 93 #include "platform/loader/fetch/ResourceFetcher.h"
94 #include "platform/plugins/PluginData.h" 94 #include "platform/plugins/PluginData.h"
95 #include "platform/scheduler/renderer/web_view_scheduler.h"
95 #include "platform/text/TextStream.h" 96 #include "platform/text/TextStream.h"
96 #include "platform/wtf/PtrUtil.h" 97 #include "platform/wtf/PtrUtil.h"
97 #include "platform/wtf/StdLibExtras.h" 98 #include "platform/wtf/StdLibExtras.h"
98 #include "public/platform/InterfaceProvider.h" 99 #include "public/platform/InterfaceProvider.h"
99 #include "public/platform/InterfaceRegistry.h" 100 #include "public/platform/InterfaceRegistry.h"
100 #include "public/platform/WebScreenInfo.h" 101 #include "public/platform/WebScreenInfo.h"
101 #include "public/platform/WebViewScheduler.h"
102 #include "third_party/skia/include/core/SkImage.h" 102 #include "third_party/skia/include/core/SkImage.h"
103 #include "third_party/skia/include/core/SkSurface.h" 103 #include "third_party/skia/include/core/SkSurface.h"
104 104
105 namespace blink { 105 namespace blink {
106 106
107 using namespace HTMLNames; 107 using namespace HTMLNames;
108 108
109 namespace { 109 namespace {
110 110
111 // Converts from bounds in CSS space to device space based on the given 111 // Converts from bounds in CSS space to device space based on the given
(...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after
946 if (frame_ && frame_->Client() && frame_->Client()->GetFrameBlameContext()) 946 if (frame_ && frame_->Client() && frame_->Client()->GetFrameBlameContext())
947 frame_->Client()->GetFrameBlameContext()->Enter(); 947 frame_->Client()->GetFrameBlameContext()->Enter();
948 } 948 }
949 949
950 ScopedFrameBlamer::~ScopedFrameBlamer() { 950 ScopedFrameBlamer::~ScopedFrameBlamer() {
951 if (frame_ && frame_->Client() && frame_->Client()->GetFrameBlameContext()) 951 if (frame_ && frame_->Client() && frame_->Client()->GetFrameBlameContext())
952 frame_->Client()->GetFrameBlameContext()->Leave(); 952 frame_->Client()->GetFrameBlameContext()->Leave();
953 } 953 }
954 954
955 } // namespace blink 955 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698