| OLD | NEW |
| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 void setSuggestedValue(Element*, const String&, ExceptionState&); | 164 void setSuggestedValue(Element*, const String&, ExceptionState&); |
| 165 void setEditingValue(Element* inputElement, const String&, ExceptionState&); | 165 void setEditingValue(Element* inputElement, const String&, ExceptionState&); |
| 166 void setAutofilled(Element*, bool enabled, ExceptionState&); | 166 void setAutofilled(Element*, bool enabled, ExceptionState&); |
| 167 void scrollElementToRect(Element*, long x, long y, long w, long h, Exception
State&); | 167 void scrollElementToRect(Element*, long x, long y, long w, long h, Exception
State&); |
| 168 | 168 |
| 169 PassRefPtr<Range> rangeFromLocationAndLength(Element* scope, int rangeLocati
on, int rangeLength, ExceptionState&); | 169 PassRefPtr<Range> rangeFromLocationAndLength(Element* scope, int rangeLocati
on, int rangeLength, ExceptionState&); |
| 170 unsigned locationFromRange(Element* scope, const Range*, ExceptionState&); | 170 unsigned locationFromRange(Element* scope, const Range*, ExceptionState&); |
| 171 unsigned lengthFromRange(Element* scope, const Range*, ExceptionState&); | 171 unsigned lengthFromRange(Element* scope, const Range*, ExceptionState&); |
| 172 String rangeAsText(const Range*, ExceptionState&); | 172 String rangeAsText(const Range*, ExceptionState&); |
| 173 | 173 |
| 174 PassRefPtr<DOMPoint> touchPositionAdjustedToBestClickableNode(long x, long y
, long width, long height, Document*, ExceptionState&); | 174 PassRefPtrWillBeRawPtr<DOMPoint> touchPositionAdjustedToBestClickableNode(lo
ng x, long y, long width, long height, Document*, ExceptionState&); |
| 175 Node* touchNodeAdjustedToBestClickableNode(long x, long y, long width, long
height, Document*, ExceptionState&); | 175 Node* touchNodeAdjustedToBestClickableNode(long x, long y, long width, long
height, Document*, ExceptionState&); |
| 176 PassRefPtr<DOMPoint> touchPositionAdjustedToBestContextMenuNode(long x, long
y, long width, long height, Document*, ExceptionState&); | 176 PassRefPtrWillBeRawPtr<DOMPoint> touchPositionAdjustedToBestContextMenuNode(
long x, long y, long width, long height, Document*, ExceptionState&); |
| 177 Node* touchNodeAdjustedToBestContextMenuNode(long x, long y, long width, lon
g height, Document*, ExceptionState&); | 177 Node* touchNodeAdjustedToBestContextMenuNode(long x, long y, long width, lon
g height, Document*, ExceptionState&); |
| 178 PassRefPtr<ClientRect> bestZoomableAreaForTouchPoint(long x, long y, long wi
dth, long height, Document*, ExceptionState&); | 178 PassRefPtr<ClientRect> bestZoomableAreaForTouchPoint(long x, long y, long wi
dth, long height, Document*, ExceptionState&); |
| 179 | 179 |
| 180 int lastSpellCheckRequestSequence(Document*, ExceptionState&); | 180 int lastSpellCheckRequestSequence(Document*, ExceptionState&); |
| 181 int lastSpellCheckProcessedSequence(Document*, ExceptionState&); | 181 int lastSpellCheckProcessedSequence(Document*, ExceptionState&); |
| 182 | 182 |
| 183 Vector<AtomicString> userPreferredLanguages() const; | 183 Vector<AtomicString> userPreferredLanguages() const; |
| 184 void setUserPreferredLanguages(const Vector<String>&); | 184 void setUserPreferredLanguages(const Vector<String>&); |
| 185 | 185 |
| 186 unsigned activeDOMObjectCount(Document*, ExceptionState&); | 186 unsigned activeDOMObjectCount(Document*, ExceptionState&); |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 335 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 336 RefPtrWillBeMember<DOMWindow> m_frontendWindow; | 336 RefPtrWillBeMember<DOMWindow> m_frontendWindow; |
| 337 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; | 337 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; |
| 338 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; | 338 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; |
| 339 RefPtrWillBeMember<InternalProfilers> m_profilers; | 339 RefPtrWillBeMember<InternalProfilers> m_profilers; |
| 340 }; | 340 }; |
| 341 | 341 |
| 342 } // namespace WebCore | 342 } // namespace WebCore |
| 343 | 343 |
| 344 #endif | 344 #endif |
| OLD | NEW |