| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |