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

Unified Diff: third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.h

Issue 2915013005: Stop TextIteratorTextState from using LayoutText (Closed)
Patch Set: Thu Jun 1 18:55:15 PDT 2017 Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.h
diff --git a/third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.h b/third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.h
index 64dbf2f519a1c2bd2c7102129d8b3c0fcf3d49b7..1be6394d152abe14833609a25ca1a441f553b262 100644
--- a/third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.h
+++ b/third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.h
@@ -35,7 +35,6 @@
namespace blink {
-class LayoutText;
class TextIteratorBehavior;
class CORE_EXPORT TextIteratorTextState
@@ -60,8 +59,10 @@ class CORE_EXPORT TextIteratorTextState
Node* offset_base_node,
int text_start_offset,
int text_end_offset);
- void EmitText(Node* text_node,
- LayoutText* layout_object,
+ void EmitText(Node*,
+ int position_start_offset,
+ int position_end_offset,
+ const String&,
int text_start_offset,
int text_end_offset);
void EmitAltText(Node*);

Powered by Google App Engine
This is Rietveld 408576698