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

Unified Diff: third_party/WebKit/Source/core/testing/Internals.h

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/Internals.h
diff --git a/third_party/WebKit/Source/core/testing/Internals.h b/third_party/WebKit/Source/core/testing/Internals.h
index d31c67aa5dbd6b10264f49e5348c9409637f0bd8..0e54a01956a89290799ea4dfd89feed8d18d8408 100644
--- a/third_party/WebKit/Source/core/testing/Internals.h
+++ b/third_party/WebKit/Source/core/testing/Internals.h
@@ -43,7 +43,7 @@ namespace blink {
class Animation;
class CallbackFunctionTest;
class CanvasRenderingContext;
-class ClientRect;
+class DOMRect;
class ClientRectList;
class DOMArrayBuffer;
class DOMPoint;
@@ -170,9 +170,9 @@ class Internals final : public GarbageCollected<Internals>,
void setFormControlStateOfHistoryItem(const Vector<String>&, ExceptionState&);
DOMWindow* pagePopupWindow() const;
- ClientRect* absoluteCaretBounds(ExceptionState&);
+ DOMRect* absoluteCaretBounds(ExceptionState&);
- ClientRect* boundingBox(Element*);
+ DOMRect* boundingBox(Element*);
void setMarker(Document*, const Range*, const String&, ExceptionState&);
unsigned markerCountForNode(Node*, const String&, ExceptionState&);
@@ -248,12 +248,12 @@ class Internals final : public GarbageCollected<Internals>,
long height,
Document*,
ExceptionState&);
- ClientRect* bestZoomableAreaForTouchPoint(long x,
- long y,
- long width,
- long height,
- Document*,
- ExceptionState&);
+ DOMRect* bestZoomableAreaForTouchPoint(long x,
+ long y,
+ long width,
+ long height,
+ Document*,
+ ExceptionState&);
int lastSpellCheckRequestSequence(Document*, ExceptionState&);
int lastSpellCheckProcessedSequence(Document*, ExceptionState&);
@@ -440,7 +440,7 @@ class Internals final : public GarbageCollected<Internals>,
unsigned visibleSelectionAnchorOffset();
Node* visibleSelectionFocusNode();
unsigned visibleSelectionFocusOffset();
- ClientRect* selectionBounds(ExceptionState&);
+ DOMRect* selectionBounds(ExceptionState&);
String textAffinity();
bool loseSharedGraphicsContext3D();
@@ -556,7 +556,7 @@ class Internals final : public GarbageCollected<Internals>,
String getProgrammaticScrollAnimationState(Node*) const;
// Returns the visual rect of a node's LayoutObject.
- ClientRect* visualRect(Node*);
+ DOMRect* visualRect(Node*);
// Intentional crash.
void crash();
« no previous file with comments | « third_party/WebKit/Source/core/layout/ScrollAnchorTest.cpp ('k') | third_party/WebKit/Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698