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

Unified Diff: third_party/WebKit/Source/platform/ThreadSafeFunctional.h

Issue 2104913002: Rename threadSafeBind() to crossThreadBind() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@TRV_CTCPointer
Patch Set: Rebase Created 4 years, 6 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: third_party/WebKit/Source/platform/ThreadSafeFunctional.h
diff --git a/third_party/WebKit/Source/platform/ThreadSafeFunctional.h b/third_party/WebKit/Source/platform/ThreadSafeFunctional.h
deleted file mode 100644
index 2f6d94e2df95e2d56c3417ec670a0196afa95d36..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/platform/ThreadSafeFunctional.h
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright 2015 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 ThreadSafeFunctional_h
-#define ThreadSafeFunctional_h
-
-#include "base/bind.h"
-#include "platform/CrossThreadCopier.h"
-#include "wtf/Functional.h"
-#include <type_traits>
-
-namespace blink {
-
-// threadSafeBind() is bind() for cross-thread task posting.
-// threadSafeBind() applies CrossThreadCopier to the arguments.
-//
-// Example:
-// void func1(int, const String&);
-// f = threadSafeBind(func1, 42, str);
-// func1(42, str2) will be called when |f()| is executed,
-// where |str2| is a deep copy of |str| (created by str.isolatedCopy()).
-//
-// threadSafeBind(str) is similar to bind(str.isolatedCopy()), but the latter
-// is NOT thread-safe due to temporary objects (https://crbug.com/390851).
-//
-// Don't (if you pass the task across threads):
-// bind(func1, 42, str);
-// bind(func1, 42, str.isolatedCopy());
-
-template<typename FunctionType, typename... Ps>
-std::unique_ptr<Function<base::MakeUnboundRunType<FunctionType, Ps...>, WTF::CrossThreadAffinity>> threadSafeBind(
- FunctionType function,
- Ps&&... parameters)
-{
- return WTF::bindInternal<WTF::CrossThreadAffinity>(
- function,
- CrossThreadCopier<typename std::decay<Ps>::type>::copy(std::forward<Ps>(parameters))...);
-}
-
-} // namespace blink
-
-#endif // ThreadSafeFunctional_h

Powered by Google App Engine
This is Rietveld 408576698