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

Unified Diff: chrome/browser/resources/net_internals/main.js

Issue 2939273002: DO NOT SUBMIT: what chrome/browser/resources/ could eventually look like with clang-format (Closed)
Patch Set: Created 3 years, 6 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
Index: chrome/browser/resources/net_internals/main.js
diff --git a/chrome/browser/resources/net_internals/main.js b/chrome/browser/resources/net_internals/main.js
index dbe70a9e335b72b7b1f05f0f4371a0029eca2b4b..2ab766d6d7503c665f87010fe236571104d02b0a 100644
--- a/chrome/browser/resources/net_internals/main.js
+++ b/chrome/browser/resources/net_internals/main.js
@@ -226,7 +226,7 @@ var MainView = (function() {
if (!parsed)
return;
- if (parsed.tabHash == "#export") {
+ if (parsed.tabHash == '#export') {
// The #export tab was removed in M60, after having been
// deprecated since M58. In case anyone *still* has URLs
// bookmarked to this, inform them and redirect.
@@ -237,10 +237,10 @@ var MainView = (function() {
// page load (confirm() is synchronous).
setTimeout(() => {
var navigateToNetExport = confirm(
- "#export was removed\nDo you want to navigate to " +
- "chrome://net-export/ instead?");
+ '#export was removed\nDo you want to navigate to ' +
+ 'chrome://net-export/ instead?');
if (navigateToNetExport) {
- window.location.href = "chrome://net-export";
+ window.location.href = 'chrome://net-export';
return;
}
});

Powered by Google App Engine
This is Rietveld 408576698