summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/layout/ng/layout_ng_table_cell.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/layout/ng/layout_ng_table_cell.h')
-rw-r--r--chromium/third_party/blink/renderer/core/layout/ng/layout_ng_table_cell.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/chromium/third_party/blink/renderer/core/layout/ng/layout_ng_table_cell.h b/chromium/third_party/blink/renderer/core/layout/ng/layout_ng_table_cell.h
deleted file mode 100644
index 4781aa05bb3..00000000000
--- a/chromium/third_party/blink/renderer/core/layout/ng/layout_ng_table_cell.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2016 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 THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_NG_LAYOUT_NG_TABLE_CELL_H_
-#define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_NG_LAYOUT_NG_TABLE_CELL_H_
-
-#include "third_party/blink/renderer/core/core_export.h"
-#include "third_party/blink/renderer/core/layout/layout_table_cell.h"
-#include "third_party/blink/renderer/core/layout/ng/layout_ng_block_flow_mixin.h"
-
-namespace blink {
-
-class CORE_EXPORT LayoutNGTableCell final
- : public LayoutNGBlockFlowMixin<LayoutTableCell> {
- public:
- explicit LayoutNGTableCell(Element*);
-
- void UpdateBlockLayout(bool relayout_children) override;
-
- const char* GetName() const override { return "LayoutNGTableCell"; }
-};
-
-} // namespace blink
-
-#endif // THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_NG_LAYOUT_NG_TABLE_CELL_H_