| 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 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 | 414 |
| 415 String getCurrentCursorInfo(); | 415 String getCurrentCursorInfo(); |
| 416 | 416 |
| 417 bool cursorUpdatePending() const; | 417 bool cursorUpdatePending() const; |
| 418 | 418 |
| 419 String markerTextForListItem(Element*); | 419 String markerTextForListItem(Element*); |
| 420 | 420 |
| 421 void forceReload(bool bypass_cache); | 421 void forceReload(bool bypass_cache); |
| 422 | 422 |
| 423 String getImageSourceURL(Element*); | 423 String getImageSourceURL(Element*); |
| 424 void forceImageReload(Element*, ExceptionState&); |
| 424 | 425 |
| 425 String selectMenuListText(HTMLSelectElement*); | 426 String selectMenuListText(HTMLSelectElement*); |
| 426 bool isSelectPopupVisible(Node*); | 427 bool isSelectPopupVisible(Node*); |
| 427 bool selectPopupItemStyleIsRtl(Node*, int); | 428 bool selectPopupItemStyleIsRtl(Node*, int); |
| 428 int selectPopupItemStyleFontHeight(Node*, int); | 429 int selectPopupItemStyleFontHeight(Node*, int); |
| 429 void resetTypeAheadSession(HTMLSelectElement*); | 430 void resetTypeAheadSession(HTMLSelectElement*); |
| 430 | 431 |
| 431 Node* visibleSelectionAnchorNode(); | 432 Node* visibleSelectionAnchorNode(); |
| 432 unsigned visibleSelectionAnchorOffset(); | 433 unsigned visibleSelectionAnchorOffset(); |
| 433 Node* visibleSelectionFocusNode(); | 434 Node* visibleSelectionFocusNode(); |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 563 const String& marker_type, | 564 const String& marker_type, |
| 564 unsigned index, | 565 unsigned index, |
| 565 ExceptionState&); | 566 ExceptionState&); |
| 566 Member<InternalRuntimeFlags> runtime_flags_; | 567 Member<InternalRuntimeFlags> runtime_flags_; |
| 567 Member<Document> document_; | 568 Member<Document> document_; |
| 568 }; | 569 }; |
| 569 | 570 |
| 570 } // namespace blink | 571 } // namespace blink |
| 571 | 572 |
| 572 #endif // Internals_h | 573 #endif // Internals_h |
| OLD | NEW |