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

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

Issue 2906953002: [DMC #26] Add CompositionMarker::Thickness enum (Closed)
Patch Set: 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 ExceptionState&); 183 ExceptionState&);
184 String markerDescriptionForNode(Node*, 184 String markerDescriptionForNode(Node*,
185 const String& marker_type, 185 const String& marker_type,
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 const String& thickness_value,
194 const String& background_color_value, 194 const String& background_color_value,
195 ExceptionState&); 195 ExceptionState&);
196 void setTextMatchMarkersActive(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*,
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698