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

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

Issue 2612103004: [ng_layout] Rename NGFragmentBase,NGFragment,NGPhysicalFragment (Closed)
Patch Set: CR: rename ifdef guards Created 3 years, 11 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 a4addc79ed1cf5b399c0b8973110c7cdad3c366e..6658cf8d252881bfb6487592f7e5de902802e525 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
@@ -6,17 +6,17 @@
#define NGTextFragment_h
#include "core/CoreExport.h"
-#include "core/layout/ng/ng_fragment_base.h"
#include "core/layout/ng/ng_physical_text_fragment.h"
+#include "core/layout/ng/ng_fragment.h"
namespace blink {
-class CORE_EXPORT NGTextFragment final : public NGFragmentBase {
+class CORE_EXPORT NGTextFragment final : public NGFragment {
public:
NGTextFragment(NGWritingMode writing_mode,
TextDirection direction,
NGPhysicalTextFragment* physical_text_fragment)
- : NGFragmentBase(writing_mode, direction, physical_text_fragment) {}
+ : NGFragment(writing_mode, direction, physical_text_fragment) {}
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698