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

Unified Diff: third_party/WebKit/Source/core/testing/LayerRectList.cpp

Issue 2869803003: Change from ClientRect to DOMRect.
Patch Set: Change from ClientRect to DOMRect. Created 3 years, 6 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/core/testing/LayerRectList.cpp
diff --git a/third_party/WebKit/Source/core/testing/LayerRectList.cpp b/third_party/WebKit/Source/core/testing/LayerRectList.cpp
index 6f0f0acfa2825a2d99e88952051088097f251588..9d09a350502942cb45ee5c3ab27f87403889c90e 100644
--- a/third_party/WebKit/Source/core/testing/LayerRectList.cpp
+++ b/third_party/WebKit/Source/core/testing/LayerRectList.cpp
@@ -30,8 +30,8 @@
#include "core/testing/LayerRectList.h"
-#include "core/dom/ClientRect.h"
#include "core/dom/Node.h"
+#include "core/geometry/DOMRect.h"
#include "core/testing/LayerRect.h"
namespace blink {
@@ -53,7 +53,7 @@ void LayerRectList::Append(Node* layer_root_node,
const String& layer_type,
int layer_offset_x,
int layer_offset_y,
- ClientRect* layer_relative_rect) {
+ DOMRect* layer_relative_rect) {
list_.push_back(LayerRect::Create(layer_root_node, layer_type, layer_offset_x,
layer_offset_y, layer_relative_rect));
}

Powered by Google App Engine
This is Rietveld 408576698