summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrace Cham <hscham@google.com>2023-01-27 12:57:51 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-01-27 12:57:51 +0000
commit98ee9c51dac0b204cfaa5784f919f87247cbd536 (patch)
treea50626055ff02522fd209d0174d16251c8a8b02f
parentfa4f142b36f642a21f8040817fa305a5beaf145f (diff)
parent8f8c6a22cf19bd2a451589145e8ef507fb945355 (diff)
downloadlibchrome-98ee9c51dac0b204cfaa5784f919f87247cbd536.tar.gz
libchrome: add base/functional/* headers am: 57f727b567 am: 316c1ca053 am: 8f8c6a22cf
Original change: https://android-review.googlesource.com/c/platform/external/libchrome/+/2399915 Change-Id: I19e1112dc7f60de347465551ebf8c14936172e0a 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_