| 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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 unsigned index, | 186 unsigned index, |
| 187 ExceptionState&); | 187 ExceptionState&); |
| 188 void addTextMatchMarker(const Range*, | 188 void addTextMatchMarker(const Range*, |
| 189 const String& match_status, | 189 const String& match_status, |
| 190 ExceptionState&); | 190 ExceptionState&); |
| 191 void addCompositionMarker(const Range*, | 191 void addCompositionMarker(const Range*, |
| 192 const String& underline_color_value, | 192 const String& underline_color_value, |
| 193 bool thick, | 193 bool thick, |
| 194 const String& background_color_value, | 194 const String& background_color_value, |
| 195 ExceptionState&); | 195 ExceptionState&); |
| 196 void setMarkersActive(Node*, | 196 void setTextMatchMarkersActive(Node*, |
| 197 unsigned start_offset, | 197 unsigned start_offset, |
| 198 unsigned end_offset, | 198 unsigned end_offset, |
| 199 bool); | 199 bool); |
| 200 void setMarkedTextMatchesAreHighlighted(Document*, bool); | 200 void setMarkedTextMatchesAreHighlighted(Document*, bool); |
| 201 | 201 |
| 202 void setFrameViewPosition(Document*, long x, long y, ExceptionState&); | 202 void setFrameViewPosition(Document*, long x, long y, ExceptionState&); |
| 203 String viewportAsText(Document*, | 203 String viewportAsText(Document*, |
| 204 float device_pixel_ratio, | 204 float device_pixel_ratio, |
| 205 int available_width, | 205 int available_width, |
| 206 int available_height, | 206 int available_height, |
| 207 ExceptionState&); | 207 ExceptionState&); |
| 208 | 208 |
| 209 bool elementShouldAutoComplete(Element* input_element, ExceptionState&); | 209 bool elementShouldAutoComplete(Element* input_element, ExceptionState&); |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 const String& marker_type, | 564 const String& marker_type, |
| 565 unsigned index, | 565 unsigned index, |
| 566 ExceptionState&); | 566 ExceptionState&); |
| 567 Member<InternalRuntimeFlags> runtime_flags_; | 567 Member<InternalRuntimeFlags> runtime_flags_; |
| 568 Member<Document> document_; | 568 Member<Document> document_; |
| 569 }; | 569 }; |
| 570 | 570 |
| 571 } // namespace blink | 571 } // namespace blink |
| 572 | 572 |
| 573 #endif // Internals_h | 573 #endif // Internals_h |
| OLD | NEW |