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

Side by Side Diff: chrome/test/data/chromeproxy/extension/popup.html

Issue 1438043006: Check in Data Saver extension into Chromium (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make all lines<80 characters, fixed remaining presubmit warnings Created 5 years, 1 month 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>
3 <head>
4 <link rel="stylesheet" type="text/css" href="popup.css">
5 <script src="popup_compiled.js"></script>
6 </head>
7 <body>
8 <div id="ext_name"></div>
9 <div id="chrome_incompatible" style="display: none;">
10 <table><tr><td>
11 <img class="alert" src="images/alert.webp">
12 </td><td>
13 <span id="chrome_incompatible_message"></span>
14 </td></tr></table>
15 </div>
16 <div id="incognito" style="display: none;">
17 <table><tr><td>
18 <img class="alert" src="images/alert.webp">
19 </td><td>
20 <span id="incognito_message"></span>
21 </td></tr></table>
22 </div>
23 <div id="main" style="display: none;">
24 <div id="proxy_off" style="display: none;">
25 <div id="info1"></div>
26 <div id="info2"></div>
27 <a id="enable_proxy" href="#" tabindex="-1"></a>
28 <a tabindex="-1" id="learn_more" target="_blank" href="https://support .google.com/chrome/?p=data_saver_off"></a>
29 </div>
30 <div id="proxy_on" style="display: none;">
31 <canvas id="data_savings_graph" width="278" height="132"></canvas>
32 <span id="graph_start_date"></span>
33 <span id="graph_end_date"></span>
34 <div style="clear: both;"></div>
35 <div class="data_savings_numbers">
36 <span id="data_savings_percent"></span>
37 <div class="data_savings_sizes">
38 <div id="original_data_size"></div>
39 <div id="compressed_data_size"></div>
40 <div style="clear: both;"></div>
41 </div>
42 <div style="clear: both;"></div>
43 </div>
44 <a id="disable_proxy" href="#" tabindex="-1"></a>
45 <a id="help_feedback" tabindex="-1" target="_blank" href="https://suppor t.google.com/chrome/?p=data_saver_on"></a>
46 </div>
47 </div>
48 </body>
49 </html>
OLDNEW
« no previous file with comments | « chrome/test/data/chromeproxy/extension/popup.css ('k') | chrome/test/data/chromeproxy/extension/popup_compiled.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698