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

Side by Side Diff: Source/core/testing/Internals.h

Issue 404473004: Rename DOMPoint to WebKitPoint in C++ sides. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years, 5 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 unified diff | Download patch
« no previous file with comments | « Source/core/frame/WebKitPoint.idl ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 26 matching lines...) Expand all
37 #include "wtf/ArrayBuffer.h" 37 #include "wtf/ArrayBuffer.h"
38 #include "wtf/PassRefPtr.h" 38 #include "wtf/PassRefPtr.h"
39 #include "wtf/RefCounted.h" 39 #include "wtf/RefCounted.h"
40 #include "wtf/text/WTFString.h" 40 #include "wtf/text/WTFString.h"
41 41
42 namespace blink { 42 namespace blink {
43 43
44 class CanvasRenderingContext2D; 44 class CanvasRenderingContext2D;
45 class ClientRect; 45 class ClientRect;
46 class ClientRectList; 46 class ClientRectList;
47 class DOMPoint; 47 class WebKitPoint;
48 class DOMStringList; 48 class DOMStringList;
49 class LocalDOMWindow; 49 class LocalDOMWindow;
50 class Document; 50 class Document;
51 class DocumentMarker; 51 class DocumentMarker;
52 class Element; 52 class Element;
53 class ExceptionState; 53 class ExceptionState;
54 class ExecutionContext; 54 class ExecutionContext;
55 class GCObservation; 55 class GCObservation;
56 class HTMLMediaElement; 56 class HTMLMediaElement;
57 class InternalProfilers; 57 class InternalProfilers;
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 void setSuggestedValue(Element*, const String&, ExceptionState&); 163 void setSuggestedValue(Element*, const String&, ExceptionState&);
164 void setEditingValue(Element* inputElement, const String&, ExceptionState&); 164 void setEditingValue(Element* inputElement, const String&, ExceptionState&);
165 void setAutofilled(Element*, bool enabled, ExceptionState&); 165 void setAutofilled(Element*, bool enabled, ExceptionState&);
166 void scrollElementToRect(Element*, long x, long y, long w, long h, Exception State&); 166 void scrollElementToRect(Element*, long x, long y, long w, long h, Exception State&);
167 167
168 PassRefPtrWillBeRawPtr<Range> rangeFromLocationAndLength(Element* scope, int rangeLocation, int rangeLength, ExceptionState&); 168 PassRefPtrWillBeRawPtr<Range> rangeFromLocationAndLength(Element* scope, int rangeLocation, int rangeLength, ExceptionState&);
169 unsigned locationFromRange(Element* scope, const Range*, ExceptionState&); 169 unsigned locationFromRange(Element* scope, const Range*, ExceptionState&);
170 unsigned lengthFromRange(Element* scope, const Range*, ExceptionState&); 170 unsigned lengthFromRange(Element* scope, const Range*, ExceptionState&);
171 String rangeAsText(const Range*, ExceptionState&); 171 String rangeAsText(const Range*, ExceptionState&);
172 172
173 PassRefPtrWillBeRawPtr<DOMPoint> touchPositionAdjustedToBestClickableNode(lo ng x, long y, long width, long height, Document*, ExceptionState&); 173 PassRefPtrWillBeRawPtr<WebKitPoint> touchPositionAdjustedToBestClickableNode (long x, long y, long width, long height, Document*, ExceptionState&);
174 Node* touchNodeAdjustedToBestClickableNode(long x, long y, long width, long height, Document*, ExceptionState&); 174 Node* touchNodeAdjustedToBestClickableNode(long x, long y, long width, long height, Document*, ExceptionState&);
175 PassRefPtrWillBeRawPtr<DOMPoint> touchPositionAdjustedToBestContextMenuNode( long x, long y, long width, long height, Document*, ExceptionState&); 175 PassRefPtrWillBeRawPtr<WebKitPoint> touchPositionAdjustedToBestContextMenuNo de(long x, long y, long width, long height, Document*, ExceptionState&);
176 Node* touchNodeAdjustedToBestContextMenuNode(long x, long y, long width, lon g height, Document*, ExceptionState&); 176 Node* touchNodeAdjustedToBestContextMenuNode(long x, long y, long width, lon g height, Document*, ExceptionState&);
177 PassRefPtrWillBeRawPtr<ClientRect> bestZoomableAreaForTouchPoint(long x, lon g y, long width, long height, Document*, ExceptionState&); 177 PassRefPtrWillBeRawPtr<ClientRect> bestZoomableAreaForTouchPoint(long x, lon g y, long width, long height, Document*, ExceptionState&);
178 178
179 int lastSpellCheckRequestSequence(Document*, ExceptionState&); 179 int lastSpellCheckRequestSequence(Document*, ExceptionState&);
180 int lastSpellCheckProcessedSequence(Document*, ExceptionState&); 180 int lastSpellCheckProcessedSequence(Document*, ExceptionState&);
181 181
182 Vector<AtomicString> userPreferredLanguages() const; 182 Vector<AtomicString> userPreferredLanguages() const;
183 void setUserPreferredLanguages(const Vector<String>&); 183 void setUserPreferredLanguages(const Vector<String>&);
184 184
185 unsigned activeDOMObjectCount(Document*, ExceptionState&); 185 unsigned activeDOMObjectCount(Document*, ExceptionState&);
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag gable, ExceptionState&); 326 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag gable, ExceptionState&);
327 327
328 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&); 328 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&);
329 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; 329 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags;
330 RefPtrWillBeMember<InternalProfilers> m_profilers; 330 RefPtrWillBeMember<InternalProfilers> m_profilers;
331 }; 331 };
332 332
333 } // namespace blink 333 } // namespace blink
334 334
335 #endif 335 #endif
OLDNEW
« no previous file with comments | « Source/core/frame/WebKitPoint.idl ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698