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

Side by Side Diff: chrome/browser/resources/gaia_auth/success.js

Issue 10440061: Remaining style fixes from http://codereview.chromium.org/10443024/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
1 function load() { 5 function load() {
2 console.log('### Authenticator success page loaded.'); 6 console.log('### Authenticator success page loaded.');
csilv 2012/05/25 23:39:19 remove console.log
zel 2012/05/25 23:46:43 Done.
3 7
4 var params = getUrlSearchParams(location.search); 8 var params = getUrlSearchParams(location.search);
5 var msg = { 9 var msg = {
6 'method': 'confirmLogin', 10 'method': 'confirmLogin',
7 'attemptToken': params['attemptToken'] 11 'attemptToken': params['attemptToken']
8 }; 12 };
9 window.parent.postMessage(msg, 13 window.parent.postMessage(msg,
10 'chrome-extension://mfffpogegjflfpflabcdkioaeobkgjik/main.html'); 14 'chrome-extension://mfffpogegjflfpflabcdkioaeobkgjik/main.html');
11 } 15 }
12 16
13 document.addEventListener('DOMContentLoaded', load); 17 document.addEventListener('DOMContentLoaded', load);
14 18
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698