OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 var DeviceLogUI = (function() { | 5 var DeviceLogUI = (function() { |
6 'use strict'; | 6 'use strict'; |
7 | 7 |
8 /** | 8 /** |
9 * Creates a tag for the log level. | 9 * Creates a tag for the log level. |
10 * | 10 * |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 checkboxes[i].onclick = requestLog; | 140 checkboxes[i].onclick = requestLog; |
141 | 141 |
142 setRefresh(); | 142 setRefresh(); |
143 requestLog(); | 143 requestLog(); |
144 }); | 144 }); |
145 | 145 |
146 return { | 146 return { |
147 getLogCallback: getLogCallback | 147 getLogCallback: getLogCallback |
148 }; | 148 }; |
149 })(); | 149 })(); |
OLD | NEW |