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

Unified Diff: mojo/public/cpp/bindings/tests/bind_task_runner_unittest.cc

Issue 1942053002: Deletes base::MessageLoop::set_thread_name(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed media_unittests Created 4 years, 7 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: mojo/public/cpp/bindings/tests/bind_task_runner_unittest.cc
diff --git a/mojo/public/cpp/bindings/tests/bind_task_runner_unittest.cc b/mojo/public/cpp/bindings/tests/bind_task_runner_unittest.cc
index c9ce26ce414330b109b69c6469c1c1dc2c42e4e2..007e3a5545de7c9c8f9abe6345127531d31fd935 100644
--- a/mojo/public/cpp/bindings/tests/bind_task_runner_unittest.cc
+++ b/mojo/public/cpp/bindings/tests/bind_task_runner_unittest.cc
@@ -47,6 +47,7 @@ class TestTaskRunner : public base::SingleThreadTaskRunner {
bool RunsTasksOnCurrentThread() const override {
return base::PlatformThread::CurrentRef() == thread_id_;
}
+ std::string GetThreadName() const override { return std::string(); }
// Only quits when Quit() is called.
void Run() {

Powered by Google App Engine
This is Rietveld 408576698