| 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 void setMarkersActive(Node*, unsigned startOffset, unsigned endOffset, bool,
ExceptionState&); | 155 void setMarkersActive(Node*, unsigned startOffset, unsigned endOffset, bool,
ExceptionState&); |
| 156 void setMarkedTextMatchesAreHighlighted(Document*, bool, ExceptionState&); | 156 void setMarkedTextMatchesAreHighlighted(Document*, bool, ExceptionState&); |
| 157 | 157 |
| 158 void setScrollViewPosition(Document*, long x, long y, ExceptionState&); | 158 void setScrollViewPosition(Document*, long x, long y, ExceptionState&); |
| 159 String viewportAsText(Document*, float devicePixelRatio, int availableWidth,
int availableHeight, ExceptionState&); | 159 String viewportAsText(Document*, float devicePixelRatio, int availableWidth,
int availableHeight, ExceptionState&); |
| 160 | 160 |
| 161 bool wasLastChangeUserEdit(Element* textField, ExceptionState&); | 161 bool wasLastChangeUserEdit(Element* textField, ExceptionState&); |
| 162 bool elementShouldAutoComplete(Element* inputElement, ExceptionState&); | 162 bool elementShouldAutoComplete(Element* inputElement, ExceptionState&); |
| 163 String suggestedValue(Element*, ExceptionState&); | 163 String suggestedValue(Element*, ExceptionState&); |
| 164 void setSuggestedValue(Element*, const String&, ExceptionState&); | 164 void setSuggestedValue(Element*, const String&, ExceptionState&); |
| 165 void setValueAfterUserGesture(Element*, const String&, ExceptionState&); |
| 165 void setEditingValue(Element* inputElement, const String&, ExceptionState&); | 166 void setEditingValue(Element* inputElement, const String&, ExceptionState&); |
| 166 void setAutofilled(Element*, bool enabled, ExceptionState&); | 167 void setAutofilled(Element*, bool enabled, ExceptionState&); |
| 167 void scrollElementToRect(Element*, long x, long y, long w, long h, Exception
State&); | 168 void scrollElementToRect(Element*, long x, long y, long w, long h, Exception
State&); |
| 168 | 169 |
| 169 PassRefPtrWillBeRawPtr<Range> rangeFromLocationAndLength(Element* scope, int
rangeLocation, int rangeLength, ExceptionState&); | 170 PassRefPtrWillBeRawPtr<Range> rangeFromLocationAndLength(Element* scope, int
rangeLocation, int rangeLength, ExceptionState&); |
| 170 unsigned locationFromRange(Element* scope, const Range*, ExceptionState&); | 171 unsigned locationFromRange(Element* scope, const Range*, ExceptionState&); |
| 171 unsigned lengthFromRange(Element* scope, const Range*, ExceptionState&); | 172 unsigned lengthFromRange(Element* scope, const Range*, ExceptionState&); |
| 172 String rangeAsText(const Range*, ExceptionState&); | 173 String rangeAsText(const Range*, ExceptionState&); |
| 173 | 174 |
| 174 PassRefPtrWillBeRawPtr<DOMPoint> touchPositionAdjustedToBestClickableNode(lo
ng x, long y, long width, long height, Document*, ExceptionState&); | 175 PassRefPtrWillBeRawPtr<DOMPoint> touchPositionAdjustedToBestClickableNode(lo
ng x, long y, long width, long height, Document*, ExceptionState&); |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 336 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 336 RefPtrWillBeMember<DOMWindow> m_frontendWindow; | 337 RefPtrWillBeMember<DOMWindow> m_frontendWindow; |
| 337 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; | 338 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; |
| 338 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; | 339 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; |
| 339 RefPtrWillBeMember<InternalProfilers> m_profilers; | 340 RefPtrWillBeMember<InternalProfilers> m_profilers; |
| 340 }; | 341 }; |
| 341 | 342 |
| 342 } // namespace WebCore | 343 } // namespace WebCore |
| 343 | 344 |
| 344 #endif | 345 #endif |
| OLD | NEW |