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

Unified Diff: chrome/test/data/extensions/api_test/cast_streaming/basics.js

Issue 189583004: Cast: Implement log compression and (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 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/test/data/extensions/api_test/cast_streaming/basics.js
diff --git a/chrome/test/data/extensions/api_test/cast_streaming/basics.js b/chrome/test/data/extensions/api_test/cast_streaming/basics.js
index 2e413c94f26f53e57c10d19e1ce12bb966e37867..4190a771527b6d9c6b9e153fa0fdf4da379f217e 100644
--- a/chrome/test/data/extensions/api_test/cast_streaming/basics.js
+++ b/chrome/test/data/extensions/api_test/cast_streaming/basics.js
@@ -45,9 +45,9 @@ chrome.test.runTests([
stateMachine.onAllStopped =
pass(function(audioId, videoId) {
rtpStream.getRawEvents(audioId,
- stateMachine.onGotLogs.bind(stateMachine, audioId));
+ stateMachine.onGotRawEvents.bind(stateMachine, audioId));
rtpStream.getRawEvents(videoId,
- stateMachine.onGotLogs.bind(stateMachine, videoId));
+ stateMachine.onGotRawEvents.bind(stateMachine, videoId));
}.bind(null, audioId, videoId));
stateMachine.onGotAllLogs =
pass(function(stream, audioId, videoId, udpId) {

Powered by Google App Engine
This is Rietveld 408576698