Chromium Code Reviews| 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 297 | 297 |
| 298 PassRefPtr<DOMArrayBuffer> serializeObject(PassRefPtr<SerializedScriptValue> ) const; | 298 PassRefPtr<DOMArrayBuffer> serializeObject(PassRefPtr<SerializedScriptValue> ) const; |
| 299 PassRefPtr<SerializedScriptValue> deserializeBuffer(PassRefPtr<DOMArrayBuffe r>) const; | 299 PassRefPtr<SerializedScriptValue> deserializeBuffer(PassRefPtr<DOMArrayBuffe r>) const; |
| 300 | 300 |
| 301 String getCurrentCursorInfo(); | 301 String getCurrentCursorInfo(); |
| 302 | 302 |
| 303 bool cursorUpdatePending() const; | 303 bool cursorUpdatePending() const; |
| 304 | 304 |
| 305 String markerTextForListItem(Element*); | 305 String markerTextForListItem(Element*); |
| 306 | 306 |
| 307 void forceReload(bool endToEnd); | 307 void forceReload(bool bypassCache); |
|
Takashi Toyoshima
2016/04/01 07:22:31
Probably it's reasonable to keep this bool.
| |
| 308 | 308 |
| 309 String getImageSourceURL(Element*); | 309 String getImageSourceURL(Element*); |
| 310 | 310 |
| 311 String selectMenuListText(HTMLSelectElement*); | 311 String selectMenuListText(HTMLSelectElement*); |
| 312 bool isSelectPopupVisible(Node*); | 312 bool isSelectPopupVisible(Node*); |
| 313 bool selectPopupItemStyleIsRtl(Node*, int); | 313 bool selectPopupItemStyleIsRtl(Node*, int); |
| 314 int selectPopupItemStyleFontHeight(Node*, int); | 314 int selectPopupItemStyleFontHeight(Node*, int); |
| 315 void resetTypeAheadSession(HTMLSelectElement*); | 315 void resetTypeAheadSession(HTMLSelectElement*); |
| 316 | 316 |
| 317 ClientRect* selectionBounds(ExceptionState&); | 317 ClientRect* selectionBounds(ExceptionState&); |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 415 | 415 |
| 416 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&); | 416 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&); |
| 417 Member<InternalRuntimeFlags> m_runtimeFlags; | 417 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 418 | 418 |
| 419 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 419 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 420 }; | 420 }; |
| 421 | 421 |
| 422 } // namespace blink | 422 } // namespace blink |
| 423 | 423 |
| 424 #endif // Internals_h | 424 #endif // Internals_h |
| OLD | NEW |