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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 Node* nextNodeByWalker(Node*, ExceptionCode&); | 125 Node* nextNodeByWalker(Node*, ExceptionCode&); |
126 Node* previousNodeByWalker(Node*, ExceptionCode&); | 126 Node* previousNodeByWalker(Node*, ExceptionCode&); |
127 | 127 |
128 String visiblePlaceholder(Element*); | 128 String visiblePlaceholder(Element*); |
129 #if ENABLE(INPUT_TYPE_COLOR) | 129 #if ENABLE(INPUT_TYPE_COLOR) |
130 void selectColorInColorChooser(Element*, const String& colorValue); | 130 void selectColorInColorChooser(Element*, const String& colorValue); |
131 #endif | 131 #endif |
132 Vector<String> formControlStateOfPreviousHistoryItem(ExceptionCode&); | 132 Vector<String> formControlStateOfPreviousHistoryItem(ExceptionCode&); |
133 void setFormControlStateOfPreviousHistoryItem(const Vector<String>&, Excepti
onCode&); | 133 void setFormControlStateOfPreviousHistoryItem(const Vector<String>&, Excepti
onCode&); |
134 void setEnableMockPagePopup(bool, ExceptionCode&); | 134 void setEnableMockPagePopup(bool, ExceptionCode&); |
135 #if ENABLE(PAGE_POPUP) | |
136 PassRefPtr<PagePopupController> pagePopupController(); | 135 PassRefPtr<PagePopupController> pagePopupController(); |
137 #endif | |
138 | 136 |
139 PassRefPtr<ClientRect> absoluteCaretBounds(ExceptionCode&); | 137 PassRefPtr<ClientRect> absoluteCaretBounds(ExceptionCode&); |
140 | 138 |
141 PassRefPtr<ClientRect> boundingBox(Element*, ExceptionCode&); | 139 PassRefPtr<ClientRect> boundingBox(Element*, ExceptionCode&); |
142 | 140 |
143 PassRefPtr<ClientRectList> inspectorHighlightRects(Document*, ExceptionCode&
); | 141 PassRefPtr<ClientRectList> inspectorHighlightRects(Document*, ExceptionCode&
); |
144 | 142 |
145 unsigned markerCountForNode(Node*, const String&, ExceptionCode&); | 143 unsigned markerCountForNode(Node*, const String&, ExceptionCode&); |
146 PassRefPtr<Range> markerRangeForNode(Node*, const String& markerType, unsign
ed index, ExceptionCode&); | 144 PassRefPtr<Range> markerRangeForNode(Node*, const String& markerType, unsign
ed index, ExceptionCode&); |
147 String markerDescriptionForNode(Node*, const String& markerType, unsigned in
dex, ExceptionCode&); | 145 String markerDescriptionForNode(Node*, const String& markerType, unsigned in
dex, ExceptionCode&); |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 Vector<String> iconURLs(Document*, int iconTypesMask) const; | 300 Vector<String> iconURLs(Document*, int iconTypesMask) const; |
303 | 301 |
304 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); | 302 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); |
305 RefPtr<DOMWindow> m_frontendWindow; | 303 RefPtr<DOMWindow> m_frontendWindow; |
306 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; | 304 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; |
307 }; | 305 }; |
308 | 306 |
309 } // namespace WebCore | 307 } // namespace WebCore |
310 | 308 |
311 #endif | 309 #endif |
OLD | NEW |