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

Side by Side Diff: chrome/browser/resources/about_memory.js

Issue 406143002: webui: Remove unnecessary </include>s everywhere. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: GARRRRRR Created 6 years, 5 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
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/login/login.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 <include src="../../../ui/webui/resources/js/util.js"></include> 5 <include src="../../../ui/webui/resources/js/util.js">
6 6
7 function reload() { 7 function reload() {
8 if ($('helpTooltip')) 8 if ($('helpTooltip'))
9 return; 9 return;
10 history.go(0); 10 history.go(0);
11 } 11 }
12 12
13 function formatNumber(str) { 13 function formatNumber(str) {
14 str += ''; 14 str += '';
15 if (str == '0') { 15 if (str == '0') {
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 75
76 document.addEventListener('DOMContentLoaded', function() { 76 document.addEventListener('DOMContentLoaded', function() {
77 // This is the javascript code that processes the template: 77 // This is the javascript code that processes the template:
78 var input = new JsEvalContext(loadTimeData.getValue('jstemplateData')); 78 var input = new JsEvalContext(loadTimeData.getValue('jstemplateData'));
79 var output = $('t'); 79 var output = $('t');
80 jstProcess(input, output); 80 jstProcess(input, output);
81 81
82 enableHelpTooltips(); 82 enableHelpTooltips();
83 }); 83 });
84 84
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/login/login.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698