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 |