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

Side by Side Diff: chrome/test/media_router/telemetry/benchmarks/pagesets/mirroring.html

Issue 1931553004: Stop the existing session if it exists before start a new session and add mirroring scenario for cp… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update media_router_perf_pages.py 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <title>MR Perf Test</title>
5 <script type="text/javascript" src="cpu_memory_script.js"></script>
6 <script>
7 function startSession() {
8 var startSessionRequest = new PresentationRequest("http://google.com");
9 startSessionRequest.start();
10 console.log('start session');
11 }
12 </script>
13 </head>
14 <body>
15 <button id="start_session_button" onclick="startSession()">
16 Start session
17 </button>
18 <video id="video_player" controls autoplay loop src="bear-vp9-opus.webm">
19 </video>
20 </body>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698