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

Side by Side Diff: chrome/renderer/resources/blocked_plugin.html

Issue 596253002: Don't use setFixedLayoutSize in WebViewPlugin. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | « no previous file | chrome/renderer/resources/click_to_play_plugin.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, user-scalable=no">
5 <script> 6 <script>
6 function debug(msg) { 7 function debug(msg) {
7 document.getElementById('debug').textContent = msg; 8 document.getElementById('debug').textContent = msg;
8 } 9 }
9 function setMessage(msg) { 10 function setMessage(msg) {
10 document.getElementById('message').textContent = msg; 11 document.getElementById('message').textContent = msg;
11 } 12 }
12 function notifyDidFinishLoading() { 13 function notifyDidFinishLoading() {
13 if (plugin.didFinishLoading) 14 if (plugin.didFinishLoading)
14 plugin.didFinishLoading(); 15 plugin.didFinishLoading();
(...skipping 20 matching lines...) Expand all
35 <if expr="is_android"> 36 <if expr="is_android">
36 <img id="plugin_icon" src="plugin_blocked_android.png"> 37 <img id="plugin_icon" src="plugin_blocked_android.png">
37 </if> 38 </if>
38 <h1 id="message" i18n-content="message"></h1> 39 <h1 id="message" i18n-content="message"></h1>
39 <p id="debug"> </p> 40 <p id="debug"> </p>
40 </div> 41 </div>
41 <div id="close" i18n-values="title:hide" onclick="plugin.hide();"></div> 42 <div id="close" i18n-values="title:hide" onclick="plugin.hide();"></div>
42 </div> 43 </div>
43 </body> 44 </body>
44 </html> 45 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/resources/click_to_play_plugin.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698