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

Unified Diff: chrome/browser/resources/chromeos/first_run/app/background.js

Issue 2944703004: Run clang-format on .js files in c/b/r/chromeos (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/chromeos/first_run/app/background.js
diff --git a/chrome/browser/resources/chromeos/first_run/app/background.js b/chrome/browser/resources/chromeos/first_run/app/background.js
index 5d1ba842e5d9380d2ff644289cc2818cfc247d26..8e40e34b7d31fc367f5ec42dbc74d475256323e5 100644
--- a/chrome/browser/resources/chromeos/first_run/app/background.js
+++ b/chrome/browser/resources/chromeos/first_run/app/background.js
@@ -3,11 +3,13 @@
// found in the LICENSE file.
chrome.app.runtime.onLaunched.addListener(function() {
- chrome.app.window.create('main.html', {
- 'frame': 'none',
- 'resizable': false,
- 'hidden': true,
- }, function(appWindow) {
- appWindow.contentWindow.appWindow = appWindow;
- });
+ chrome.app.window.create(
+ 'main.html', {
+ 'frame': 'none',
+ 'resizable': false,
+ 'hidden': true,
+ },
+ function(appWindow) {
+ appWindow.contentWindow.appWindow = appWindow;
+ });
});

Powered by Google App Engine
This is Rietveld 408576698