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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/ThrottledWidget.js

Issue 1809773002: DevTools: split platformFontsWidget.css out of elementsPanel.css (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/elements/platformFontsWidget.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/ui/ThrottledWidget.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/ThrottledWidget.js b/third_party/WebKit/Source/devtools/front_end/ui/ThrottledWidget.js
index 5f49e8cc4f27d6ad6a227d56b320be7a5c1c0e24..b8f3a13d429fc5221e77c0ca6584a58c3749c0ca 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/ThrottledWidget.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/ThrottledWidget.js
@@ -5,10 +5,11 @@
/**
* @constructor
* @extends {WebInspector.Widget}
+ * @param {boolean=} isWebComponent
*/
-WebInspector.ThrottledWidget = function()
+WebInspector.ThrottledWidget = function(isWebComponent)
{
- WebInspector.Widget.call(this);
+ WebInspector.Widget.call(this, isWebComponent);
this._updateThrottler = new WebInspector.Throttler(100);
this._updateWhenVisible = false;
}
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/elements/platformFontsWidget.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698