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

Side by Side Diff: third_party/WebKit/Source/web/InspectorEmulationAgent.cpp

Issue 2774823002: Remove FrameHost class (Closed)
Patch Set: Rebase 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 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "web/InspectorEmulationAgent.h" 5 #include "web/InspectorEmulationAgent.h"
6 6
7 #include "core/frame/FrameHost.h"
8 #include "core/frame/FrameView.h" 7 #include "core/frame/FrameView.h"
9 #include "core/frame/Settings.h" 8 #include "core/frame/Settings.h"
10 #include "core/inspector/protocol/DOM.h" 9 #include "core/inspector/protocol/DOM.h"
11 #include "core/page/Page.h" 10 #include "core/page/Page.h"
12 #include "platform/geometry/DoubleRect.h" 11 #include "platform/geometry/DoubleRect.h"
13 #include "platform/graphics/Color.h" 12 #include "platform/graphics/Color.h"
14 #include "public/platform/Platform.h" 13 #include "public/platform/Platform.h"
15 #include "public/platform/WebFloatPoint.h" 14 #include "public/platform/WebFloatPoint.h"
16 #include "public/platform/WebThread.h" 15 #include "public/platform/WebThread.h"
17 #include "public/platform/WebViewScheduler.h" 16 #include "public/platform/WebViewScheduler.h"
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 Color(rgba->getR(), rgba->getG(), rgba->getB(), alpha).rgb()); 204 Color(rgba->getR(), rgba->getG(), rgba->getB(), alpha).rgb());
206 return Response::OK(); 205 return Response::OK();
207 } 206 }
208 207
209 DEFINE_TRACE(InspectorEmulationAgent) { 208 DEFINE_TRACE(InspectorEmulationAgent) {
210 visitor->trace(m_webLocalFrameImpl); 209 visitor->trace(m_webLocalFrameImpl);
211 InspectorBaseAgent::trace(visitor); 210 InspectorBaseAgent::trace(visitor);
212 } 211 }
213 212
214 } // namespace blink 213 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/ExternalPopupMenuTest.cpp ('k') | third_party/WebKit/Source/web/InspectorOverlay.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698