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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/DataSaverInfobar.js

Issue 2755033003: DevTools: [regression] can't disable remote debugging data saver infobar. (Closed)
Patch Set: Created 3 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 | « no previous file | 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/components/DataSaverInfobar.js
diff --git a/third_party/WebKit/Source/devtools/front_end/components/DataSaverInfobar.js b/third_party/WebKit/Source/devtools/front_end/components/DataSaverInfobar.js
index 37b459d7a749af2b1b179b13a218bdc5a3a60a02..2de8315f0f898443a0e2b5034db6648addd01442 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/DataSaverInfobar.js
+++ b/third_party/WebKit/Source/devtools/front_end/components/DataSaverInfobar.js
@@ -32,7 +32,7 @@ Components.DataSaverInfobar = class extends UI.Infobar {
*/
dispose() {
for (var infobar of Components.DataSaverInfobar._infobars)
- infobar.dispose();
+ UI.Infobar.prototype.dispose.call(infobar);
}
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698