| 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 f7e52b048144a8e6e25896ca66cd14fe0422aebe..b398a2945b7902fa025faebb18daa689b68d0b2b 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/common/OutputStream.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/common/OutputStream.js
|
| @@ -7,7 +7,7 @@
|
| */
|
| WebInspector.OutputStream = function()
|
| {
|
| -}
|
| +};
|
|
|
| WebInspector.OutputStream.prototype = {
|
| /**
|
| @@ -17,7 +17,7 @@ WebInspector.OutputStream.prototype = {
|
| write: function(data, callback) { },
|
|
|
| close: function() { }
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -26,7 +26,7 @@ WebInspector.OutputStream.prototype = {
|
| WebInspector.StringOutputStream = function()
|
| {
|
| this._data = "";
|
| -}
|
| +};
|
|
|
| WebInspector.StringOutputStream.prototype = {
|
| /**
|
| @@ -53,4 +53,4 @@ WebInspector.StringOutputStream.prototype = {
|
| {
|
| return this._data;
|
| }
|
| -}
|
| +};
|
|
|