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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 Node* lastChildByWalker(Node*); | 124 Node* lastChildByWalker(Node*); |
125 Node* nextNodeByWalker(Node*); | 125 Node* nextNodeByWalker(Node*); |
126 Node* previousNodeByWalker(Node*); | 126 Node* previousNodeByWalker(Node*); |
127 | 127 |
128 unsigned updateStyleAndReturnAffectedElementCount(ExceptionState&) const; | 128 unsigned updateStyleAndReturnAffectedElementCount(ExceptionState&) const; |
129 unsigned needsLayoutCount(ExceptionState&) const; | 129 unsigned needsLayoutCount(ExceptionState&) const; |
130 unsigned hitTestCount(Document*, ExceptionState&) const; | 130 unsigned hitTestCount(Document*, ExceptionState&) const; |
131 | 131 |
132 String visiblePlaceholder(Element*); | 132 String visiblePlaceholder(Element*); |
133 void selectColorInColorChooser(Element*, const String& colorValue); | 133 void selectColorInColorChooser(Element*, const String& colorValue); |
| 134 void endColorChooser(Element*); |
134 bool hasAutofocusRequest(Document*); | 135 bool hasAutofocusRequest(Document*); |
135 bool hasAutofocusRequest(); | 136 bool hasAutofocusRequest(); |
136 Vector<String> formControlStateOfHistoryItem(ExceptionState&); | 137 Vector<String> formControlStateOfHistoryItem(ExceptionState&); |
137 void setFormControlStateOfHistoryItem(const Vector<String>&, ExceptionState&
); | 138 void setFormControlStateOfHistoryItem(const Vector<String>&, ExceptionState&
); |
138 void setEnableMockPagePopup(bool, ExceptionState&); | 139 void setEnableMockPagePopup(bool, ExceptionState&); |
139 PassRefPtrWillBeRawPtr<PagePopupController> pagePopupController(); | 140 PassRefPtrWillBeRawPtr<PagePopupController> pagePopupController(); |
140 | 141 |
141 PassRefPtrWillBeRawPtr<ClientRect> absoluteCaretBounds(ExceptionState&); | 142 PassRefPtrWillBeRawPtr<ClientRect> absoluteCaretBounds(ExceptionState&); |
142 | 143 |
143 PassRefPtrWillBeRawPtr<ClientRect> boundingBox(Element*); | 144 PassRefPtrWillBeRawPtr<ClientRect> boundingBox(Element*); |
(...skipping 188 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 |