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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_line_breaker.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_line_breaker.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_line_breaker.h b/third_party/WebKit/Source/core/layout/ng/ng_line_breaker.h
deleted file mode 100644
index 79f9d07250c41fea5d3c694f5f4c15efd54c0783..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/layout/ng/ng_line_breaker.h
+++ /dev/null
@@ -1,31 +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 NGLineBreaker_h
-#define NGLineBreaker_h
-
-#include "core/CoreExport.h"
-#include "platform/heap/Handle.h"
-#include "platform/wtf/text/AtomicString.h"
-
-namespace blink {
-
-class NGInlineLayoutAlgorithm;
-
-// Represents a line breaker.
-class CORE_EXPORT NGLineBreaker {
- public:
- NGLineBreaker(const AtomicString locale) : locale_(locale) {}
- ~NGLineBreaker() {}
- STACK_ALLOCATED();
-
- void BreakLines(NGInlineLayoutAlgorithm*, const String&, unsigned);
-
- private:
- const AtomicString locale_;
-};
-
-} // namespace blink
-
-#endif // NGLineBreaker_h

Powered by Google App Engine
This is Rietveld 408576698