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

Side by Side Diff: chrome/browser/resources/profile_signin_confirmation.js

Issue 12302015: Merge 182702 (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1410/src/
Patch Set: Created 7 years, 10 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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 cr.define('profile_signin_confirmation', function() { 5 cr.define('profile_signin_confirmation', function() {
6 'use strict'; 6 'use strict';
7 7
8 function initialize() { 8 function initialize() {
9 var args = JSON.parse(chrome.getVariableValue('dialogArguments')); 9 var args = JSON.parse(chrome.getVariableValue('dialogArguments'));
10 $('dialog-message').textContent = loadTimeData.getStringF( 10 $('dialog-message').textContent = loadTimeData.getStringF(
(...skipping 11 matching lines...) Expand all
22 }); 22 });
23 } 23 }
24 24
25 return { 25 return {
26 initialize: initialize 26 initialize: initialize
27 }; 27 };
28 }); 28 });
29 29
30 document.addEventListener('DOMContentLoaded', 30 document.addEventListener('DOMContentLoaded',
31 profile_signin_confirmation.initialize); 31 profile_signin_confirmation.initialize);
OLDNEW
« no previous file with comments | « chrome/browser/resources/profile_signin_confirmation.html ('k') | chrome/browser/signin/signin_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698