| Index: chrome/browser/resources/net_internals/util.js
|
| diff --git a/chrome/browser/resources/net_internals/util.js b/chrome/browser/resources/net_internals/util.js
|
| index 0702958dd28f8018dbda722be3b4692c03be155e..fa92b3c794b5ef44ff702cb2432164db6e174352 100644
|
| --- a/chrome/browser/resources/net_internals/util.js
|
| +++ b/chrome/browser/resources/net_internals/util.js
|
| @@ -164,8 +164,9 @@ function shallowCloneObject(object) {
|
| function assertFirstConstructorCall(ctor) {
|
| // This is the variable which is set by cr.addSingletonGetter().
|
| if (ctor.hasCreateFirstInstance_) {
|
| - throw Error('The class ' + ctor.name + ' is a singleton, and should ' +
|
| - 'only be accessed using ' + ctor.name + '.getInstance().');
|
| + throw Error(
|
| + 'The class ' + ctor.name + ' is a singleton, and should ' +
|
| + 'only be accessed using ' + ctor.name + '.getInstance().');
|
| }
|
| ctor.hasCreateFirstInstance_ = true;
|
| }
|
|
|