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

Unified Diff: third_party/WebKit/Source/devtools/front_end/common/OutputStream.js

Issue 2466123002: DevTools: reformat front-end code to match chromium style. (Closed)
Patch Set: all done 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/common/OutputStream.js
diff --git a/third_party/WebKit/Source/devtools/front_end/common/OutputStream.js b/third_party/WebKit/Source/devtools/front_end/common/OutputStream.js
index b398a2945b7902fa025faebb18daa689b68d0b2b..123e2a7b3b4e9d0e367d077f8654acd83e598d2b 100644
--- a/third_party/WebKit/Source/devtools/front_end/common/OutputStream.js
+++ b/third_party/WebKit/Source/devtools/front_end/common/OutputStream.js
@@ -1,56 +1,49 @@
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-
/**
* @interface
*/
-WebInspector.OutputStream = function()
-{
-};
+WebInspector.OutputStream = function() {};
WebInspector.OutputStream.prototype = {
- /**
- * @param {string} data
- * @param {function(!WebInspector.OutputStream)=} callback
- */
- write: function(data, callback) { },
+ /**
+ * @param {string} data
+ * @param {function(!WebInspector.OutputStream)=} callback
+ */
+ write: function(data, callback) {},
- close: function() { }
+ close: function() {}
};
/**
- * @constructor
* @implements {WebInspector.OutputStream}
+ * @unrestricted
*/
-WebInspector.StringOutputStream = function()
-{
- this._data = "";
-};
+WebInspector.StringOutputStream = class {
+ constructor() {
+ this._data = '';
+ }
-WebInspector.StringOutputStream.prototype = {
- /**
- * @override
- * @param {string} chunk
- * @param {function(!WebInspector.OutputStream)=} callback
- */
- write: function(chunk, callback)
- {
- this._data += chunk;
- },
+ /**
+ * @override
+ * @param {string} chunk
+ * @param {function(!WebInspector.OutputStream)=} callback
+ */
+ write(chunk, callback) {
+ this._data += chunk;
+ }
- /**
- * @override
- */
- close: function()
- {
- },
+ /**
+ * @override
+ */
+ close() {
+ }
- /**
- * @return {string}
- */
- data: function()
- {
- return this._data;
- }
+ /**
+ * @return {string}
+ */
+ data() {
+ return this._data;
+ }
};

Powered by Google App Engine
This is Rietveld 408576698