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

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

Issue 2811783002: [LayoutNG] Move inline files to the inline directory (Closed)
Patch Set: Fix unit tests Created 3 years, 8 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_inline_break_token.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_inline_break_token.h b/third_party/WebKit/Source/core/layout/ng/ng_inline_break_token.h
deleted file mode 100644
index a5b47fd58a5946fd21787a75cdb00b4ff1c74aec..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/layout/ng/ng_inline_break_token.h
+++ /dev/null
@@ -1,53 +0,0 @@
-// Copyright 2017 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef NGInlineBreakToken_h
-#define NGInlineBreakToken_h
-
-#include "core/CoreExport.h"
-#include "core/layout/ng/ng_break_token.h"
-
-namespace blink {
-
-class NGInlineNode;
-
-// Represents a break token for an inline node.
-class CORE_EXPORT NGInlineBreakToken : public NGBreakToken {
- public:
- // Creates a break token for a node which did fragment, and can potentially
- // produce more fragments.
- static RefPtr<NGInlineBreakToken> Create(NGInlineNode* node,
- unsigned item_index,
- unsigned text_offset) {
- return AdoptRef(new NGInlineBreakToken(node, item_index, text_offset));
- }
-
- // Creates a break token for a node which cannot produce any more fragments.
- static RefPtr<NGInlineBreakToken> Create(NGLayoutInputNode* node) {
- return AdoptRef(new NGInlineBreakToken(node));
- }
-
- unsigned ItemIndex() const { return item_index_; }
- unsigned TextOffset() const { return text_offset_; }
-
- private:
- NGInlineBreakToken(NGInlineNode* node,
- unsigned item_index,
- unsigned text_offset);
-
- explicit NGInlineBreakToken(NGLayoutInputNode* node);
-
- unsigned item_index_;
- unsigned text_offset_;
-};
-
-DEFINE_TYPE_CASTS(NGInlineBreakToken,
- NGBreakToken,
- token,
- token->IsInlineType(),
- token.IsInlineType());
-
-} // namespace blink
-
-#endif // NGInlineBreakToken_h

Powered by Google App Engine
This is Rietveld 408576698