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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 | 130 |
131 String visiblePlaceholder(Element*); | 131 String visiblePlaceholder(Element*); |
132 void selectColorInColorChooser(Element*, const String& colorValue); | 132 void selectColorInColorChooser(Element*, const String& colorValue); |
133 void endColorChooser(Element*); | 133 void endColorChooser(Element*); |
134 bool hasAutofocusRequest(Document*); | 134 bool hasAutofocusRequest(Document*); |
135 bool hasAutofocusRequest(); | 135 bool hasAutofocusRequest(); |
136 Vector<String> formControlStateOfHistoryItem(ExceptionState&); | 136 Vector<String> formControlStateOfHistoryItem(ExceptionState&); |
137 void setFormControlStateOfHistoryItem(const Vector<String>&, ExceptionState&
); | 137 void setFormControlStateOfHistoryItem(const Vector<String>&, ExceptionState&
); |
138 void setEnableMockPagePopup(bool, ExceptionState&); | 138 void setEnableMockPagePopup(bool, ExceptionState&); |
139 PassRefPtrWillBeRawPtr<PagePopupController> pagePopupController(); | 139 PassRefPtrWillBeRawPtr<PagePopupController> pagePopupController(); |
| 140 LocalDOMWindow* pagePopupWindow() const; |
140 | 141 |
141 PassRefPtrWillBeRawPtr<ClientRect> absoluteCaretBounds(ExceptionState&); | 142 PassRefPtrWillBeRawPtr<ClientRect> absoluteCaretBounds(ExceptionState&); |
142 | 143 |
143 PassRefPtrWillBeRawPtr<ClientRect> boundingBox(Element*); | 144 PassRefPtrWillBeRawPtr<ClientRect> boundingBox(Element*); |
144 | 145 |
145 unsigned markerCountForNode(Node*, const String&, ExceptionState&); | 146 unsigned markerCountForNode(Node*, const String&, ExceptionState&); |
146 unsigned activeMarkerCountForNode(Node*); | 147 unsigned activeMarkerCountForNode(Node*); |
147 PassRefPtrWillBeRawPtr<Range> markerRangeForNode(Node*, const String& marker
Type, unsigned index, ExceptionState&); | 148 PassRefPtrWillBeRawPtr<Range> markerRangeForNode(Node*, const String& marker
Type, unsigned index, ExceptionState&); |
148 String markerDescriptionForNode(Node*, const String& markerType, unsigned in
dex, ExceptionState&); | 149 String markerDescriptionForNode(Node*, const String& markerType, unsigned in
dex, ExceptionState&); |
149 void addTextMatchMarker(const Range*, bool isActive); | 150 void addTextMatchMarker(const Range*, bool isActive); |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); | 333 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); |
333 | 334 |
334 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 335 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
335 Member<InternalRuntimeFlags> m_runtimeFlags; | 336 Member<InternalRuntimeFlags> m_runtimeFlags; |
336 Member<InternalProfilers> m_profilers; | 337 Member<InternalProfilers> m_profilers; |
337 }; | 338 }; |
338 | 339 |
339 } // namespace blink | 340 } // namespace blink |
340 | 341 |
341 #endif // Internals_h | 342 #endif // Internals_h |
OLD | NEW |