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

Side by Side Diff: Source/devtools/front_end/ScreencastView.js

Issue 301163005: DevTools: [JSDoc] Avoid partial arg list annotations in code except "profiler" module (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 6 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 /* 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
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
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 };
OLDNEW
« no previous file with comments | « Source/devtools/front_end/EditFileSystemDialog.js ('k') | Source/devtools/front_end/SettingsScreen.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698