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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 unsigned hitTestCount(Document*, ExceptionState&) const; | 128 unsigned hitTestCount(Document*, ExceptionState&) const; |
129 | 129 |
130 String visiblePlaceholder(Element*); | 130 String visiblePlaceholder(Element*); |
131 void selectColorInColorChooser(Element*, const String& colorValue); | 131 void selectColorInColorChooser(Element*, const String& colorValue); |
132 bool hasAutofocusRequest(Document*); | 132 bool hasAutofocusRequest(Document*); |
133 bool hasAutofocusRequest(); | 133 bool hasAutofocusRequest(); |
134 Vector<String> formControlStateOfHistoryItem(ExceptionState&); | 134 Vector<String> formControlStateOfHistoryItem(ExceptionState&); |
135 void setFormControlStateOfHistoryItem(const Vector<String>&, ExceptionState&
); | 135 void setFormControlStateOfHistoryItem(const Vector<String>&, ExceptionState&
); |
136 void setEnableMockPagePopup(bool, ExceptionState&); | 136 void setEnableMockPagePopup(bool, ExceptionState&); |
137 PassRefPtrWillBeRawPtr<PagePopupController> pagePopupController(); | 137 PassRefPtrWillBeRawPtr<PagePopupController> pagePopupController(); |
| 138 LocalDOMWindow* pagePopupWindow() const; |
138 | 139 |
139 PassRefPtrWillBeRawPtr<ClientRect> absoluteCaretBounds(ExceptionState&); | 140 PassRefPtrWillBeRawPtr<ClientRect> absoluteCaretBounds(ExceptionState&); |
140 | 141 |
141 PassRefPtrWillBeRawPtr<ClientRect> boundingBox(Element*); | 142 PassRefPtrWillBeRawPtr<ClientRect> boundingBox(Element*); |
142 | 143 |
143 unsigned markerCountForNode(Node*, const String&, ExceptionState&); | 144 unsigned markerCountForNode(Node*, const String&, ExceptionState&); |
144 unsigned activeMarkerCountForNode(Node*); | 145 unsigned activeMarkerCountForNode(Node*); |
145 PassRefPtrWillBeRawPtr<Range> markerRangeForNode(Node*, const String& marker
Type, unsigned index, ExceptionState&); | 146 PassRefPtrWillBeRawPtr<Range> markerRangeForNode(Node*, const String& marker
Type, unsigned index, ExceptionState&); |
146 String markerDescriptionForNode(Node*, const String& markerType, unsigned in
dex, ExceptionState&); | 147 String markerDescriptionForNode(Node*, const String& markerType, unsigned in
dex, ExceptionState&); |
147 void addTextMatchMarker(const Range*, bool isActive); | 148 void addTextMatchMarker(const Range*, bool isActive); |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); | 326 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); |
326 | 327 |
327 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 328 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
328 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; | 329 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; |
329 RefPtrWillBeMember<InternalProfilers> m_profilers; | 330 RefPtrWillBeMember<InternalProfilers> m_profilers; |
330 }; | 331 }; |
331 | 332 |
332 } // namespace blink | 333 } // namespace blink |
333 | 334 |
334 #endif | 335 #endif |
OLD | NEW |