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

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

Issue 14834011: Android: use grit target platform instead of define. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missed pp_ifdef(android) Created 7 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script> 4 <script>
5 function debug(msg) { 5 function debug(msg) {
6 document.getElementById('debug').textContent = msg; 6 document.getElementById('debug').textContent = msg;
7 } 7 }
8 function setMessage(msg) { 8 function setMessage(msg) {
9 document.getElementById('message').textContent = msg; 9 document.getElementById('message').textContent = msg;
10 } 10 }
(...skipping 10 matching lines...) Expand all
21 21
22 #plugin_icon { 22 #plugin_icon {
23 opacity: .6; 23 opacity: .6;
24 } 24 }
25 </style> 25 </style>
26 </head> 26 </head>
27 27
28 <body id="t" onload="notifyDidFinishLoading();"> 28 <body id="t" onload="notifyDidFinishLoading();">
29 <div i18n-values="title:name" id="outer"> 29 <div i18n-values="title:name" id="outer">
30 <div id="inner"> 30 <div id="inner">
31 <if expr="not pp_ifdef('android')"> 31 <if expr="not is_android">
32 <div><img id="plugin_icon" src="plugin_blocked.png"></div> 32 <div><img id="plugin_icon" src="plugin_blocked.png"></div>
33 </if> 33 </if>
34 <if expr="pp_ifdef('android')"> 34 <if expr="is_android">
35 <img id="plugin_icon" src="plugin_blocked_android.png"> 35 <img id="plugin_icon" src="plugin_blocked_android.png">
36 </if> 36 </if>
37 <h1 id="message" i18n-content="message"></h1> 37 <h1 id="message" i18n-content="message"></h1>
38 <p id="debug"> </p> 38 <p id="debug"> </p>
39 </div> 39 </div>
40 <div id="close" i18n-values="title:hide" onclick="plugin.hide();"></div> 40 <div id="close" i18n-values="title:hide" onclick="plugin.hide();"></div>
41 </div> 41 </div>
42 </body> 42 </body>
43 </html> 43 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/net_export/net_export.html ('k') | chrome/renderer/resources/neterror.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698