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

Side by Side Diff: chrome/browser/resources/chromeos/slow.html

Issue 22654003: Create system tray item for accessing chrome://slow (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Code review fixes Created 7 years, 4 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
(Empty)
1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection">
3 <head>
4 <meta name="viewport" content="width=device-width, initial-scale=1.0,
5 maximum-scale=1.0, user-scalable=no">
6 <title i18n-content="title"></title>
7 <link rel="stylesheet" href="chrome://resources/css/widgets.css">
8 <link rel="stylesheet" href="slow.css">
9 <script src="chrome://resources/js/cr.js"></script>
10 <script src="chrome://resources/js/cr/event_target.js"></script>
11 <script src="chrome://resources/js/local_strings.js"></script>
12 <script src="chrome://resources/js/util.js"></script>
13 <script src="slow.js"></script>
14 </head>
15 <body i18n-values=".style.fontFamily:fontfamily;">
16 <div id="container" class="container">
17 <div i18n-content="slowDescription"></div>
18 <br>
19 <div i18n-values=".innerHTML:slowWarning"></div>
20 <div id="container-inner" width=100% class="container-inner">
21 <button id="slow-disable" i18n-content="slowDisable" hidden></button>
22 <button id="slow-enable" i18n-content="slowEnable"></button>
23 </div>
24 </div>
25 </body>
26 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698