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

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

Issue 12560002: Change var blah_blah -> blahBlah. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 9 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 i18n-values="dir:textdirection"> 2 <html 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 29 matching lines...) Expand all
40 function showPage() { 40 function showPage() {
41 document.body.style.visibility = 'visible'; 41 document.body.style.visibility = 'visible';
42 } 42 }
43 43
44 // Show the interstitial page. 44 // Show the interstitial page.
45 function forceLoad() { 45 function forceLoad() {
46 sendCommand('proceed'); 46 sendCommand('proceed');
47 } 47 }
48 48
49 document.addEventListener('DOMContentLoaded', function() { 49 document.addEventListener('DOMContentLoaded', function() {
50 var show_delay_time = localStrings.getString('show_delay_time'); 50 var showDelayTime = localStrings.getString('show_delay_time');
51 var total_wait_time = localStrings.getString('total_wait_time'); 51 var totalWaitTime = localStrings.getString('total_wait_time');
52 window.setTimeout(showPage, show_delay_time); 52 window.setTimeout(showPage, showDelayTime);
53 window.setTimeout(forceLoad, total_wait_time); 53 window.setTimeout(forceLoad, totalWaitTime);
54 }); 54 });
55 </script> 55 </script>
56 56
57 <body oncontextmenu="return false;"> 57 <body oncontextmenu="return false;">
58 <div class="header" i18n-content="heading"> 58 <div class="header" i18n-content="heading">
59 </div> 59 </div>
60 </body> 60 </body>
61 </html> 61 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/login/oobe_screen_update.js ('k') | chrome/browser/resources/chromeos/mobile_setup.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698