summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrace Cham <hscham@google.com>2023-01-27 11:39:49 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-01-27 11:39:49 +0000
commit316c1ca053d0fdaf1d6ff4dee1f0a8a6e2edfb61 (patch)
treea50626055ff02522fd209d0174d16251c8a8b02f
parent9d17565aec1b6f81250c9a935c5528c6f72eba7f (diff)
parent57f727b567b5eed80427cdb3b5526dbbb4a32f6b (diff)
downloadlibchrome-316c1ca053d0fdaf1d6ff4dee1f0a8a6e2edfb61.tar.gz
libchrome: add base/functional/* headers am: 57f727b567
Original change: https://android-review.googlesource.com/c/platform/external/libchrome/+/2399915 Change-Id: I0f5e0482396a8ee8206cb88ec21fe3322820e7be Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--base/functional/bind.h13
-rw-r--r--base/functional/callback.h13
-rw-r--r--base/functional/callback_forward.h13
-rw-r--r--base/functional/callback_helpers.h13
4 files changed, 52 insertions, 0 deletions
diff --git a/base/functional/bind.h b/base/functional/bind.h
new file mode 100644
index 0000000000..155f1efb1e
--- /dev/null
+++ b/base/functional/bind.h
@@ -0,0 +1,13 @@
+// Copyright 2023 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.
+
+// For forward compatibility: r1093705 libchrome moved base/bind.h to
+// base/functional/.
+
+#ifndef BASE_FUNCTIONAL_BIND_H_
+#define BASE_FUNCTIONAL_BIND_H_
+
+#include <base/bind.h>
+
+#endif // BASE_FUNCTIONAL_BIND_H_
diff --git a/base/functional/callback.h b/base/functional/callback.h
new file mode 100644
index 0000000000..5ef051bf87
--- /dev/null
+++ b/base/functional/callback.h
@@ -0,0 +1,13 @@
+// Copyright 2023 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.
+
+// For forward compatibility: r1093705 libchrome moved base/callback.h to
+// base/functional/.
+
+#ifndef BASE_FUNCTIONAL_CALLBACK_H_
+#define BASE_FUNCTIONAL_CALLBACK_H_
+
+#include <base/callback.h>
+
+#endif // BASE_FUNCTIONAL_CALLBACK_H_
diff --git a/base/functional/callback_forward.h b/base/functional/callback_forward.h
new file mode 100644
index 0000000000..8c833acb4b
--- /dev/null
+++ b/base/functional/callback_forward.h
@@ -0,0 +1,13 @@
+// Copyright 2023 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.
+
+// For forward compatibility: r1093705 libchrome moved base/callback_forward.h
+// to base/functional/.
+
+#ifndef BASE_FUNCTIONAL_CALLBACK_FORWARD_H_
+#define BASE_FUNCTIONAL_CALLBACK_FORWARD_H_
+
+#include <base/callback_forward.h>
+
+#endif // BASE_FUNCTIONAL_CALLBACK_FORWARD_H_
diff --git a/base/functional/callback_helpers.h b/base/functional/callback_helpers.h
new file mode 100644
index 0000000000..63f3a18e83
--- /dev/null
+++ b/base/functional/callback_helpers.h
@@ -0,0 +1,13 @@
+// Copyright 2023 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.
+
+// For forward compatibility: r1093705 libchrome moved base/callback_helpers.h
+// to base/functional/.
+
+#ifndef BASE_FUNCTIONAL_CALLBACK_HELPERS_H_
+#define BASE_FUNCTIONAL_CALLBACK_HELPERS_H_
+
+#include <base/callback_helpers.h>
+
+#endif // BASE_FUNCTIONAL_CALLBACK_HELPERS_H_