Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Side by Side Diff: third_party/WebKit/Source/core/testing/Internals.h

Issue 2925543003: [ActiveSuggestionMarker #3] Add painting for ActiveSuggestionMarker (Closed)
Patch Set: marker_with_formatting => styleable_marker Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 const String& thickness_value, 193 const String& thickness_value,
194 const String& background_color_value, 194 const String& background_color_value,
195 ExceptionState&); 195 ExceptionState&);
196 void addActiveSuggestionMarker(const Range*,
197 const String& underline_color_value,
198 const String& thickness_value,
199 const String& background_color_value,
200 ExceptionState&);
196 void setTextMatchMarkersActive(Node*, 201 void setTextMatchMarkersActive(Node*,
197 unsigned start_offset, 202 unsigned start_offset,
198 unsigned end_offset, 203 unsigned end_offset,
199 bool); 204 bool);
200 void setMarkedTextMatchesAreHighlighted(Document*, bool); 205 void setMarkedTextMatchesAreHighlighted(Document*, bool);
201 206
202 void setFrameViewPosition(Document*, long x, long y, ExceptionState&); 207 void setFrameViewPosition(Document*, long x, long y, ExceptionState&);
203 String viewportAsText(Document*, 208 String viewportAsText(Document*,
204 float device_pixel_ratio, 209 float device_pixel_ratio,
205 int available_width, 210 int available_width,
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 const String& marker_type, 573 const String& marker_type,
569 unsigned index, 574 unsigned index,
570 ExceptionState&); 575 ExceptionState&);
571 Member<InternalRuntimeFlags> runtime_flags_; 576 Member<InternalRuntimeFlags> runtime_flags_;
572 Member<Document> document_; 577 Member<Document> document_;
573 }; 578 };
574 579
575 } // namespace blink 580 } // namespace blink
576 581
577 #endif // Internals_h 582 #endif // Internals_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/paint/InlineTextBoxPainter.cpp ('k') | third_party/WebKit/Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698