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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_text_fragment.h

Issue 2676533003: [LayoutNG] Convert physical fragments to being RefCounted. (Closed)
Patch Set: address comments. Created 3 years, 10 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/layout/ng/ng_text_fragment.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_text_fragment.h b/third_party/WebKit/Source/core/layout/ng/ng_text_fragment.h
index b5b3a0f022474e005aabfa1c7a061bb243c885a0..cac82e11d94a04f2221fd083a0b0908744d79e6c 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_text_fragment.h
+++ b/third_party/WebKit/Source/core/layout/ng/ng_text_fragment.h
@@ -14,9 +14,8 @@ namespace blink {
class CORE_EXPORT NGTextFragment final : public NGFragment {
public:
NGTextFragment(NGWritingMode writing_mode,
- TextDirection direction,
NGPhysicalTextFragment* physical_text_fragment)
- : NGFragment(writing_mode, direction, physical_text_fragment) {}
+ : NGFragment(writing_mode, physical_text_fragment) {}
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698