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

Unified Diff: netlog_viewer/netlog_viewer/util.js

Issue 3011363002: Apply Chromium changes up to commit 0036296a1128ac9cbefeaff51c8df831ec421c36 (Closed)
Patch Set: address comments Created 3 years, 3 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 | « netlog_viewer/netlog_viewer/top_mid_bottom_view.js ('k') | netlog_viewer/netlog_viewer/view.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: netlog_viewer/netlog_viewer/util.js
diff --git a/netlog_viewer/netlog_viewer/util.js b/netlog_viewer/netlog_viewer/util.js
index 57048ddfe68f71999e429eff94f0c92839819073..ab1853f46ddcc32f500c9a58e7a518493a7b7235 100644
--- a/netlog_viewer/netlog_viewer/util.js
+++ b/netlog_viewer/netlog_viewer/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;
}
« no previous file with comments | « netlog_viewer/netlog_viewer/top_mid_bottom_view.js ('k') | netlog_viewer/netlog_viewer/view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698