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

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
« no previous file with comments | « chrome/browser/resources/gaia_auth/success.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.');
3
4 var params = getUrlSearchParams(location.search); 6 var params = getUrlSearchParams(location.search);
5 var msg = { 7 var msg = {
6 'method': 'confirmLogin', 8 'method': 'confirmLogin',
7 'attemptToken': params['attemptToken'] 9 'attemptToken': params['attemptToken']
8 }; 10 };
9 window.parent.postMessage(msg, 11 window.parent.postMessage(msg,
10 'chrome-extension://mfffpogegjflfpflabcdkioaeobkgjik/main.html'); 12 'chrome-extension://mfffpogegjflfpflabcdkioaeobkgjik/main.html');
11 } 13 }
12 14
13 document.addEventListener('DOMContentLoaded', load); 15 document.addEventListener('DOMContentLoaded', load);
14 16
OLDNEW
« no previous file with comments | « chrome/browser/resources/gaia_auth/success.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698