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

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

Issue 11962043: Move webui resources from chrome\browser\resources\shared to ui\webui\resources. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 id="template_root" i18n-values="dir:textdirection"> 2 <html id="template_root" i18n-values="dir:textdirection">
3 <head> 3 <head>
4 <title i18n-content="title"> 4 <title i18n-content="title">
5 </title> 5 </title>
6 <style> 6 <style>
7 html { 7 html {
8 height: 100%; 8 height: 100%;
9 } 9 }
10 body { 10 body {
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 94
95 .hidden { 95 .hidden {
96 display: none; 96 display: none;
97 } 97 }
98 98
99 .splitter { 99 .splitter {
100 border-top: 1px solid #DDD; 100 border-top: 1px solid #DDD;
101 height: 1px; 101 height: 1px;
102 } 102 }
103 </style> 103 </style>
104 <script src="../shared/js/local_strings.js"></script> 104 <script src="../../../../ui/webui/resources/js/local_strings.js"></script>
105 105
106 <script> 106 <script>
107 var localStrings = new LocalStrings(); 107 var localStrings = new LocalStrings();
108 108
109 function sendCommand(cmd) { 109 function sendCommand(cmd) {
110 window.domAutomationController.setAutomationId(1); 110 window.domAutomationController.setAutomationId(1);
111 window.domAutomationController.send(cmd); 111 window.domAutomationController.send(cmd);
112 } 112 }
113 113
114 // Show the offline page. 114 // Show the offline page.
(...skipping 29 matching lines...) Expand all
144 </div> 144 </div>
145 <div id="lower" class="hidden"> 145 <div id="lower" class="hidden">
146 <div class="activation_message"> 146 <div class="activation_message">
147 <div class="splitter"></div> 147 <div class="splitter"></div>
148 <iframe src="chrome-extension://iadeocfgjdjdmpenejdbfeaocpbikmab/activatio n_in_offline.html" 148 <iframe src="chrome-extension://iadeocfgjdjdmpenejdbfeaocpbikmab/activatio n_in_offline.html"
149 id="carrierPage" frameborder="0"></iframe> 149 id="carrierPage" frameborder="0"></iframe>
150 </div> 150 </div>
151 </div> 151 </div>
152 </body> 152 </body>
153 </html> 153 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698