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

Side by Side Diff: chrome/common/extensions/docs/examples/api/desktopCapture/index.html

Issue 522483007: Fix DesktopMediaPickerViews to handle background parent_web_contents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2125
Patch Set: Created 6 years, 3 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
« no previous file with comments | « chrome/common/extensions/docs/examples/api/desktopCapture/background.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 body { 4 body {
5 background: white; 5 background: white;
6 display: -webkit-flex; 6 display: -webkit-flex;
7 -webkit-justify-content: center; 7 -webkit-justify-content: center;
8 -webkit-align-items: center; 8 -webkit-align-items: center;
9 -webkit-flex-direction: column; 9 -webkit-flex-direction: column;
10 } 10 }
11 video { 11 video {
12 width: 640px; 12 width: 640px;
13 height: 480px; 13 height: 480px;
14 border: 1px solid #e2e2e2; 14 border: 1px solid #e2e2e2;
15 box-shadow: 0 1px 1px rgba(0,0,0,0.2); 15 box-shadow: 0 1px 1px rgba(0,0,0,0.2);
16 } 16 }
17 </style> 17 </style>
18 </head> 18 </head>
19 <body> 19 <body>
20 <video id="video" autoplay></video> 20 <video id="video" autoplay></video>
21 <p><button id="start">Start</button><button id="cancel">Cancel</button></p> 21 <p>
22 <button id="start">Start</button>
23 <button id="cancel">Cancel</button>
24 <button id="startFromBackgroundPage">Start from background page</button>
25 </p>
22 <script src="app.js"></script> 26 <script src="app.js"></script>
23 </body> 27 </body>
24 </html> 28 </html>
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/examples/api/desktopCapture/background.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698