1From b69366c4a2f08545bd03e1c0aa6a37562510a2e6 Mon Sep 17 00:00:00 2001
2From: hscham <hscham@chromium.org>
3Date: Wed, 3 Jun 2020 17:26:49 +0900
4Subject: [PATCH] Add header files base/{check_op,notreached}.h
5
6Change-Id: I5267ddeba3a63c7977f093b1a25dff760dbe167b
7---
8 base/check_op.h   | 10 ++++++++++
9 base/notreached.h | 10 ++++++++++
10 2 files changed, 20 insertions(+)
11 create mode 100644 base/check_op.h
12 create mode 100644 base/notreached.h
13
14diff --git a/base/check_op.h b/base/check_op.h
15new file mode 100644
16index 000000000..caa3c3af6
17--- /dev/null
18+++ base/check_op.h
19@@ -0,0 +1,10 @@
20+// Copyright 2020 The Chromium Authors. All rights reserved.
21+// Use of this source code is governed by a BSD-style license that can be
22+// found in the LICENSE file.
23+
24+#ifndef BASE_CHECK_OP_H_
25+#define BASE_CHECK_OP_H_
26+
27+#include "base/logging.h"
28+
29+#endif  // BASE_CHECK_OP_H_
30diff --git a/base/notreached.h b/base/notreached.h
31new file mode 100644
32index 000000000..1eacc44e4
33--- /dev/null
34+++ base/notreached.h
35@@ -0,0 +1,10 @@
36+// Copyright 2020 The Chromium Authors. All rights reserved.
37+// Use of this source code is governed by a BSD-style license that can be
38+// found in the LICENSE file.
39+
40+#ifndef BASE_NOTREACHED_H_
41+#define BASE_NOTREACHED_H_
42+
43+#include "base/logging.h"
44+
45+#endif  // BASE_NOTREACHED_H_
46--
472.27.0.rc2.251.g90737beb825-goog
48
49