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

Unified Diff: blimp/net/blimp_message_thread_pipe.cc

Issue 2076163002: Migrate SequencedTaskRunnerHandle calls to TaskRunnerHandle calls. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mix_c_Ab_1_scheduler_support_parallelTRH
Patch Set: 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
« no previous file with comments | « blimp/client/session/blimp_client_session.cc ('k') | blimp/net/thread_pipe_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/net/blimp_message_thread_pipe.cc
diff --git a/blimp/net/blimp_message_thread_pipe.cc b/blimp/net/blimp_message_thread_pipe.cc
index 3848d9b4e02140bb01f5a905d36457e298a3f2c3..b4c9eb7de0cfbfb4fa005bb3df0cfa39fd88b72d 100644
--- a/blimp/net/blimp_message_thread_pipe.cc
+++ b/blimp/net/blimp_message_thread_pipe.cc
@@ -9,7 +9,7 @@
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "base/sequenced_task_runner.h"
-#include "base/threading/sequenced_task_runner_handle.h"
+#include "base/threading/task_runner_handle.h"
#include "blimp/common/proto/blimp_message.pb.h"
#include "blimp/net/blimp_message_processor.h"
@@ -82,7 +82,7 @@ void BlimpMessageThreadProxy::ProcessMessage(
net::CompletionCallback wrapped_callback;
if (!callback.is_null()) {
wrapped_callback = base::Bind(&DispatchProcessMessageCallback,
- base::SequencedTaskRunnerHandle::Get(),
+ base::TaskRunnerHandle::GetSequenced(),
weak_factory_.GetWeakPtr(), callback);
}
« no previous file with comments | « blimp/client/session/blimp_client_session.cc ('k') | blimp/net/thread_pipe_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698