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

Unified Diff: chrome/browser/resources/sync_confirmation/sync_confirmation.js

Issue 2274013002: [Signin Error Dialog] (1/3) Added necessary web components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some comments Created 4 years, 4 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/sync_confirmation/sync_confirmation.js
diff --git a/chrome/browser/resources/sync_confirmation/sync_confirmation.js b/chrome/browser/resources/sync_confirmation/sync_confirmation.js
deleted file mode 100644
index e22b4ddecc67c1dd4ebc7bdcea9dbb88703c9b5f..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/sync_confirmation/sync_confirmation.js
+++ /dev/null
@@ -1,59 +0,0 @@
-/* Copyright 2015 The Chromium Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file. */
-
-cr.define('sync.confirmation', function() {
- 'use strict';
-
- function onConfirm(e) {
- chrome.send('confirm');
- }
-
- function onUndo(e) {
- chrome.send('undo');
- }
-
- function onGoToSettings(e) {
- chrome.send('goToSettings');
- }
-
- function initialize() {
- document.addEventListener('keydown', onKeyDown);
- $('confirmButton').addEventListener('click', onConfirm);
- $('undoButton').addEventListener('click', onUndo);
- $('settingsLink').addEventListener('click', onGoToSettings);
- $('profile-picture').addEventListener('load', onPictureLoaded);
- chrome.send('initializedWithSize', [document.body.scrollHeight]);
- }
-
- function clearFocus() {
- document.activeElement.blur();
- }
-
- function setUserImageURL(url) {
- $('profile-picture').src = url;
- }
-
- function onPictureLoaded(e) {
- $('picture-container').classList.add('loaded');
- }
-
- function onKeyDown(e) {
- // If the currently focused element isn't something that performs an action
- // on "enter" being pressed and the user hits "enter", perform the default
- // action of the dialog, which is "OK, Got It".
- if (e.key == 'Enter' &&
- !/^(A|PAPER-BUTTON)$/.test(document.activeElement.tagName)) {
- $('confirmButton').click();
- e.preventDefault();
- }
- }
-
- return {
- clearFocus: clearFocus,
- initialize: initialize,
- setUserImageURL: setUserImageURL
- };
-});
-
-document.addEventListener('DOMContentLoaded', sync.confirmation.initialize);

Powered by Google App Engine
This is Rietveld 408576698