| 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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 String markerTextForListItem(Element*); | 298 String markerTextForListItem(Element*); |
| 299 | 299 |
| 300 void forceReload(bool endToEnd); | 300 void forceReload(bool endToEnd); |
| 301 | 301 |
| 302 String getImageSourceURL(Element*); | 302 String getImageSourceURL(Element*); |
| 303 | 303 |
| 304 String selectMenuListText(HTMLSelectElement*); | 304 String selectMenuListText(HTMLSelectElement*); |
| 305 bool isSelectPopupVisible(Node*); | 305 bool isSelectPopupVisible(Node*); |
| 306 bool selectPopupItemStyleIsRtl(Node*, int); | 306 bool selectPopupItemStyleIsRtl(Node*, int); |
| 307 int selectPopupItemStyleFontHeight(Node*, int); | 307 int selectPopupItemStyleFontHeight(Node*, int); |
| 308 void resetTypeAheadSession(HTMLSelectElement*); |
| 308 | 309 |
| 309 ClientRect* selectionBounds(ExceptionState&); | 310 ClientRect* selectionBounds(ExceptionState&); |
| 310 | 311 |
| 311 bool loseSharedGraphicsContext3D(); | 312 bool loseSharedGraphicsContext3D(); |
| 312 | 313 |
| 313 void forceCompositingUpdate(Document*, ExceptionState&); | 314 void forceCompositingUpdate(Document*, ExceptionState&); |
| 314 | 315 |
| 315 void setZoomFactor(float); | 316 void setZoomFactor(float); |
| 316 | 317 |
| 317 void setShouldRevealPassword(Element*, bool, ExceptionState&); | 318 void setShouldRevealPassword(Element*, bool, ExceptionState&); |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 385 | 386 |
| 386 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 387 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 387 Member<InternalRuntimeFlags> m_runtimeFlags; | 388 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 388 | 389 |
| 389 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 390 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 390 }; | 391 }; |
| 391 | 392 |
| 392 } // namespace blink | 393 } // namespace blink |
| 393 | 394 |
| 394 #endif // Internals_h | 395 #endif // Internals_h |
| OLD | NEW |