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

Unified Diff: third_party/WebKit/Source/core/dom/ExecutionContextTask.h

Issue 2856773003: Remove deprecated ExecutionContextTask (Closed)
Patch Set: restore private / rebase Created 3 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/core/dom/ExecutionContextTask.h
diff --git a/third_party/WebKit/Source/core/dom/ExecutionContextTask.h b/third_party/WebKit/Source/core/dom/ExecutionContextTask.h
deleted file mode 100644
index 2d7f9861cdd42f49bdb24cd14a1138dcb257324f..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/dom/ExecutionContextTask.h
+++ /dev/null
@@ -1,167 +0,0 @@
-/*
- * Copyright (C) 2013 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef ExecutionContextTask_h
-#define ExecutionContextTask_h
-
-#include <type_traits>
-#include "core/CoreExport.h"
-#include "platform/CrossThreadFunctional.h"
-#include "platform/wtf/Allocator.h"
-#include "platform/wtf/Functional.h"
-#include "platform/wtf/Noncopyable.h"
-#include "platform/wtf/PtrUtil.h"
-#include "platform/wtf/text/WTFString.h"
-
-namespace blink {
-
-class ExecutionContext;
-
-class CORE_EXPORT ExecutionContextTask {
- WTF_MAKE_NONCOPYABLE(ExecutionContextTask);
- USING_FAST_MALLOC(ExecutionContextTask);
-
- public:
- ExecutionContextTask() {}
- virtual ~ExecutionContextTask() {}
- virtual void PerformTask(ExecutionContext*) = 0;
-
- void PerformTaskIfContextIsValid(ExecutionContext* context) {
- if (context)
- PerformTask(context);
- }
-};
-
-namespace internal {
-
-template <WTF::FunctionThreadAffinity threadAffinity>
-void RunCallClosureTask(
- std::unique_ptr<Function<void(), threadAffinity>> closure,
- ExecutionContext*) {
- (*closure)();
-}
-
-template <WTF::FunctionThreadAffinity threadAffinity>
-void RunCallClosureTask(
- std::unique_ptr<Function<void(ExecutionContext*), threadAffinity>> closure,
- ExecutionContext* execution_context) {
- (*closure)(execution_context);
-}
-
-template <typename T, WTF::FunctionThreadAffinity threadAffinity>
-class CallClosureTask final : public ExecutionContextTask {
- public:
- static std::unique_ptr<CallClosureTask> Create(
- std::unique_ptr<Function<T, threadAffinity>> closure) {
- return WTF::WrapUnique(new CallClosureTask(std::move(closure)));
- }
-
- private:
- explicit CallClosureTask(std::unique_ptr<Function<T, threadAffinity>> closure)
- : closure_(std::move(closure)) {}
-
- void PerformTask(ExecutionContext* execution_context) override {
- RunCallClosureTask(std::move(closure_), execution_context);
- }
-
- std::unique_ptr<Function<T, threadAffinity>> closure_;
-};
-
-// Do not use |create| other than in createCrossThreadTask and
-// createSameThreadTask.
-// See http://crbug.com/390851
-template <typename T, WTF::FunctionThreadAffinity threadAffinity>
-std::unique_ptr<CallClosureTask<T, threadAffinity>> CreateCallClosureTask(
- std::unique_ptr<Function<T, threadAffinity>> closure) {
- return CallClosureTask<T, threadAffinity>::Create(std::move(closure));
-}
-
-} // namespace internal
-
-// createSameThreadTask() is deprecated and removed.
-// Use WTF::bind() and post it to WebTaskRunner obtained by
-// TaskRunnerHelper::get() when posting a task within a single thread.
-
-// createCrossThreadTask() is deprecated and will be removed.
-// Use crossThreadBind() and post it to an appropriate task runner
-// when posting a task to another thread.
-// See https://crbug.com/625927 for details.
-//
-// createCrossThreadTask(...) is ExecutionContextTask version of
-// crossThreadBind().
-// Using WTF::bind() directly is not thread-safe due to temporary objects, see
-// https://crbug.com/390851 for details.
-//
-// Example:
-// void func1(int, const String&);
-// createCrossThreadTask(func1, 42, str);
-// func1(42, str2) will be called, where |str2| is a deep copy of
-// |str| (created by str.isolatedCopy()).
-//
-// Don't (if you pass the task across threads):
-// bind(func1, 42, str);
-// bind(func1, 42, str.isolatedCopy());
-//
-// For functions:
-// void functionEC(MP1, ..., MPn, ExecutionContext*);
-// void function(MP1, ..., MPn);
-// class C {
-// void memberEC(MP1, ..., MPn, ExecutionContext*);
-// void member(MP1, ..., MPn);
-// };
-// We create tasks represented by std::unique_ptr<ExecutionContextTask>:
-// createCrossThreadTask(functionEC, const P1& p1, ..., const Pn& pn);
-// createCrossThreadTask(memberEC, C* ptr, const P1& p1, ..., const Pn& pn);
-// createCrossThreadTask(function, const P1& p1, ..., const Pn& pn);
-// createCrossThreadTask(member, C* ptr, const P1& p1, ..., const Pn& pn);
-// (|ptr| can also be WeakPtr<C> or other pointer-like types)
-// and then the following are called on the target thread:
-// functionEC(p1, ..., pn, context);
-// ptr->memberEC(p1, ..., pn, context);
-// function(p1, ..., pn);
-// ptr->member(p1, ..., pn);
-//
-// ExecutionContext:
-// |context| is supplied by the target thread.
-//
-// Deep copies by crossThreadBind():
-// |ptr|, |p1|, ..., |pn| are processed by crossThreadBind() and thus
-// CrossThreadCopier.
-// You don't have to call manually e.g. isolatedCopy().
-// To pass things that cannot be copied by CrossThreadCopier
-// (e.g. pointers), use crossThreadUnretained() explicitly.
-
-template <typename FunctionType, typename... P>
-std::unique_ptr<ExecutionContextTask> CreateCrossThreadTask(
- FunctionType function,
- P&&... parameters) {
- return internal::CreateCallClosureTask(
- CrossThreadBind(function, std::forward<P>(parameters)...));
-}
-
-} // namespace blink
-
-#endif

Powered by Google App Engine
This is Rietveld 408576698