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

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

Issue 47603008: Rename inline sign in URL to chrome-signin (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | « no previous file | chrome/browser/resources/inline_login/inline_login.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview Code injected into Gaia sign in page for inline sign in flow. 6 * @fileoverview Code injected into Gaia sign in page for inline sign in flow.
7 * On load stop, it receives a message from the embedder extension with a 7 * On load stop, it receives a message from the embedder extension with a
8 * JavaScript reference to the embedder window. Then upon submit of the sign 8 * JavaScript reference to the embedder window. Then upon submit of the sign
9 * in form, it posts the username and password to the embedder window. 9 * in form, it posts the username and password to the embedder window.
10 * Prototype Only. 10 * Prototype Only.
(...skipping 18 matching lines...) Expand all
29 } 29 }
30 30
31 var checkboxElement = $('advanced-box'); 31 var checkboxElement = $('advanced-box');
32 var chooseWhatToSync = checkboxElement && checkboxElement.checked; 32 var chooseWhatToSync = checkboxElement && checkboxElement.checked;
33 var msg = {method: 'attemptLogin', 33 var msg = {method: 'attemptLogin',
34 email: gaiaLoginForm['Email'].value, 34 email: gaiaLoginForm['Email'].value,
35 password: gaiaLoginForm['Passwd'].value, 35 password: gaiaLoginForm['Passwd'].value,
36 attemptToken: new Date().getTime(), 36 attemptToken: new Date().getTime(),
37 chooseWhatToSync: chooseWhatToSync}; 37 chooseWhatToSync: chooseWhatToSync};
38 38
39 extWindow.postMessage(msg, 'chrome://inline-login'); 39 extWindow.postMessage(msg, 'chrome://chrome-signin');
40 console.log('Credentials sent'); 40 console.log('Credentials sent');
41 41
42 return; 42 return;
43 }; 43 };
44 // Overrides the submit handler for the gaia login form. 44 // Overrides the submit handler for the gaia login form.
45 gaiaLoginForm.onsubmit = onLoginSubmit; 45 gaiaLoginForm.onsubmit = onLoginSubmit;
46 })(); 46 })();
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/inline_login/inline_login.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698