| 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();
|
|
|