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

Unified Diff: chrome/browser/extensions/api/cast_streaming/cast_streaming_apitest.cc

Issue 1083883003: Move BindToCurrentLoop from media/base/ to base/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix media/base/callback_holder.h compile Created 5 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: chrome/browser/extensions/api/cast_streaming/cast_streaming_apitest.cc
diff --git a/chrome/browser/extensions/api/cast_streaming/cast_streaming_apitest.cc b/chrome/browser/extensions/api/cast_streaming/cast_streaming_apitest.cc
index 54d25961011a56f05870ed40b4e99f85cf4100f3..1d3f28c8c1964627fa16bc202021fae1746ce25d 100644
--- a/chrome/browser/extensions/api/cast_streaming/cast_streaming_apitest.cc
+++ b/chrome/browser/extensions/api/cast_streaming/cast_streaming_apitest.cc
@@ -6,6 +6,7 @@
#include <cmath>
#include <vector>
+#include "base/bind_to_current_loop.h"
#include "base/callback_helpers.h"
#include "base/command_line.h"
#include "base/memory/scoped_ptr.h"
@@ -16,7 +17,6 @@
#include "chrome/common/chrome_switches.h"
#include "content/public/common/content_switches.h"
#include "extensions/common/switches.h"
-#include "media/base/bind_to_current_loop.h"
#include "media/base/video_frame.h"
#include "media/cast/cast_config.h"
#include "media/cast/cast_environment.h"
@@ -128,7 +128,7 @@ class TestPatternReceiver : public media::cast::InProcessReceiver {
FROM_HERE,
base::Bind(&TestPatternReceiver::NotifyOnceObservedAllTonesAndColors,
base::Unretained(this),
- media::BindToCurrentLoop(run_loop.QuitClosure())));
+ base::BindToCurrentLoop(run_loop.QuitClosure())));
run_loop.Run();
}
« no previous file with comments | « base/bind_to_current_loop_unittest.cc ('k') | chrome/browser/sync_file_system/drive_backend/callback_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698