OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 this._timelineActive = on; | 198 this._timelineActive = on; |
199 if (this._timelineActive) | 199 if (this._timelineActive) |
200 this._stopCasting(); | 200 this._stopCasting(); |
201 else | 201 else |
202 this._startCasting(); | 202 this._startCasting(); |
203 this._updateGlasspane(); | 203 this._updateGlasspane(); |
204 }, | 204 }, |
205 | 205 |
206 /** | 206 /** |
207 * @param {boolean} on | 207 * @param {boolean} on |
| 208 * @param {!WebInspector.Event} event |
208 * @private | 209 * @private |
209 */ | 210 */ |
210 _onProfiler: function(on, event) { | 211 _onProfiler: function(on, event) { |
211 this._profilerActive = on; | 212 this._profilerActive = on; |
212 if (this._profilerActive) | 213 if (this._profilerActive) |
213 this._stopCasting(); | 214 this._stopCasting(); |
214 else | 215 else |
215 this._startCasting(); | 216 this._startCasting(); |
216 this._updateGlasspane(); | 217 this._updateGlasspane(); |
217 }, | 218 }, |
(...skipping 795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1013 return; | 1014 return; |
1014 this._maxDisplayedProgress = progress; | 1015 this._maxDisplayedProgress = progress; |
1015 this._displayProgress(progress); | 1016 this._displayProgress(progress); |
1016 }, | 1017 }, |
1017 | 1018 |
1018 _displayProgress: function(progress) | 1019 _displayProgress: function(progress) |
1019 { | 1020 { |
1020 this._element.style.width = (100 * progress) + "%"; | 1021 this._element.style.width = (100 * progress) + "%"; |
1021 } | 1022 } |
1022 }; | 1023 }; |
OLD | NEW |