Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Unified Diff: tools/clang/base_bind_rewriters/tests/test-expected.cc

Issue 2789153002: Update BaseBindRewriters to convert base::Bind to base::BindOnce (Closed)
Patch Set: rename test files Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/clang/base_bind_rewriters/tests/test-expected.cc
diff --git a/tools/clang/base_bind_rewriters/tests/test-expected.cc b/tools/clang/base_bind_rewriters/tests/test-expected.cc
deleted file mode 100644
index 59a3b1c464de0034b55301a603bb95b54d98ff7b..0000000000000000000000000000000000000000
--- a/tools/clang/base_bind_rewriters/tests/test-expected.cc
+++ /dev/null
@@ -1,35 +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.
-
-template <typename>
-class scoped_refptr {
- public:
- void* get() { return 0; }
-};
-
-namespace base {
-
-template <typename Functor, typename... Args>
-void Bind(Functor&&, Args&&...) {}
-
-} // namespace base
-
-struct Foo {
- void Bar();
- static void Baz();
-};
-
-void Test() {
- using base::Bind;
- scoped_refptr<int> foo;
- base::Bind(&Foo::Bar, foo);
- Bind(&Foo::Bar, foo);
- base::Bind(&Foo::Bar, (&foo));
- base::Bind(&Foo::Bar, foo);
- base::Bind(&Foo::Bar, foo);
- base::Bind(&Foo::Bar, foo, foo.get());
- base::Bind(&Foo::Baz, foo.get());
- base::Bind(&Foo::Bar, foo);
- base::Bind(&Foo::Bar, (&foo));
-}

Powered by Google App Engine
This is Rietveld 408576698