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

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

Issue 2469113002: DevTools: clang format all the source + clang config landed. (Closed)
Patch Set: for landing Created 4 years, 1 month 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 * @unrestricted 5 * @unrestricted
6 */ 6 */
7 WebInspector.DataSaverInfobar = class extends WebInspector.Infobar { 7 WebInspector.DataSaverInfobar = class extends WebInspector.Infobar {
8 constructor() { 8 constructor() {
9 super( 9 super(
10 WebInspector.Infobar.Type.Warning, 10 WebInspector.Infobar.Type.Warning,
(...skipping 20 matching lines...) Expand all
31 /** 31 /**
32 * @override 32 * @override
33 */ 33 */
34 dispose() { 34 dispose() {
35 for (var infobar of WebInspector.DataSaverInfobar._infobars) 35 for (var infobar of WebInspector.DataSaverInfobar._infobars)
36 infobar.dispose(); 36 infobar.dispose();
37 } 37 }
38 }; 38 };
39 39
40 WebInspector.DataSaverInfobar._infobars = []; 40 WebInspector.DataSaverInfobar._infobars = [];
41
42
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698