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