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

Unified Diff: third_party/WebKit/Source/web/InspectorEmulationAgent.cpp

Issue 2438023003: devtools: Adds Page.getLayoutMetrics. (Closed)
Patch Set: refactor commands to Page.getLayoutMetrics. Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/InspectorEmulationAgent.cpp
diff --git a/third_party/WebKit/Source/web/InspectorEmulationAgent.cpp b/third_party/WebKit/Source/web/InspectorEmulationAgent.cpp
index a2cfd6c3878780099fb4f37ce79747067425cdae..a64303f595b6340638480d610fdc7f88fa073ea3 100644
--- a/third_party/WebKit/Source/web/InspectorEmulationAgent.cpp
+++ b/third_party/WebKit/Source/web/InspectorEmulationAgent.cpp
@@ -4,12 +4,20 @@
#include "web/InspectorEmulationAgent.h"
+#include "core/dom/Document.h"
dgozman 2016/10/25 18:14:55 Please revert changes in this file :-)
Eric Seckler 2016/10/26 12:30:45 Done.
#include "core/frame/FrameHost.h"
#include "core/frame/FrameView.h"
+#include "core/frame/LocalFrame.h"
#include "core/frame/Settings.h"
+#include "core/frame/VisualViewport.h"
#include "core/page/Page.h"
-#include "platform/geometry/DoubleRect.h"
+#include "core/style/ComputedStyle.h"
+#include "platform/geometry/FloatRect.h"
+#include "platform/geometry/FloatSize.h"
+#include "platform/geometry/IntRect.h"
#include "platform/scheduler/CancellableTaskFactory.h"
+#include "platform/scroll/ScrollTypes.h"
+#include "platform/scroll/ScrollableArea.h"
#include "public/platform/Platform.h"
#include "public/platform/WebFloatPoint.h"
#include "public/platform/WebThread.h"

Powered by Google App Engine
This is Rietveld 408576698