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

Unified Diff: chrome/browser/resources/chromeos/login/md_lock.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/login/md_lock.js
diff --git a/chrome/browser/resources/chromeos/login/md_lock.js b/chrome/browser/resources/chromeos/login/md_lock.js
index ad0e8baf153a54d542219fbc2be0a02a00b4951a..c983b2c79085835d1b60a747cd0ffc24ac8ab72b 100644
--- a/chrome/browser/resources/chromeos/login/md_lock.js
+++ b/chrome/browser/resources/chromeos/login/md_lock.js
@@ -23,15 +23,15 @@ function ensurePinKeyboardLoaded(onLoaded) {
// Do not reload assets if they are already loaded. Run |onLoaded| once assets
// are done loading, though.
if (cr.ui.login.ResourceLoader.hasDeferredAssets('custom-elements')) {
- cr.ui.login.ResourceLoader.waitUntilLayoutComplete(getPinKeyboard,
- onLoaded);
+ cr.ui.login.ResourceLoader.waitUntilLayoutComplete(
+ getPinKeyboard, onLoaded);
return;
}
// Register loader for custom elements.
cr.ui.login.ResourceLoader.registerAssets({
id: 'custom-elements',
- html: [{ url: 'chrome://oobe/custom_elements.html' }]
+ html: [{url: 'chrome://oobe/custom_elements.html'}]
});
// We only load the PIN element when it is actually shown so that lock screen
@@ -41,8 +41,8 @@ function ensurePinKeyboardLoaded(onLoaded) {
// animations. We load the PIN after an idle notification to allow the pod
// fly-in animation to complete without interruption.
cr.ui.login.ResourceLoader.loadAssetsOnIdle('custom-elements', function() {
- cr.ui.login.ResourceLoader.waitUntilLayoutComplete(getPinKeyboard,
- onLoaded);
+ cr.ui.login.ResourceLoader.waitUntilLayoutComplete(
+ getPinKeyboard, onLoaded);
});
}
« no previous file with comments | « chrome/browser/resources/chromeos/login/md_header_bar.js ('k') | chrome/browser/resources/chromeos/login/md_login_shared.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698