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

Unified Diff: ui/file_manager/file_manager/foreground/js/ui/cws_widget_container_error_dialog.js

Issue 1083683003: Speculative revert by sheriff (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed an unrelated commit that had accidentally slipped in. Created 5 years, 8 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
« no previous file with comments | « ui/file_manager/file_manager/foreground/js/main_scripts.js ('k') | ui/file_manager/file_manager/main.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/file_manager/foreground/js/ui/cws_widget_container_error_dialog.js
diff --git a/ui/file_manager/file_manager/foreground/js/ui/cws_widget_container_error_dialog.js b/ui/file_manager/file_manager/foreground/js/ui/cws_widget_container_error_dialog.js
deleted file mode 100644
index 28efbb432ce727495ccb43e48d174a424fff7f64..0000000000000000000000000000000000000000
--- a/ui/file_manager/file_manager/foreground/js/ui/cws_widget_container_error_dialog.js
+++ /dev/null
@@ -1,58 +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.
-
-/**
- * @param {HTMLElement} parentNode Node to be parent for this dialog.
- * @constructor
- * @extends {cr.ui.dialogs.BaseDialog}
- */
-function CWSWidgetContainerErrorDialog(parentNode) {
- cr.ui.dialogs.BaseDialog.call(this, parentNode);
-}
-
-CWSWidgetContainerErrorDialog.prototype = {
- __proto__: cr.ui.dialogs.BaseDialog.prototype
-};
-
-/**
- * Whether the dialog is showm.
- * @return {boolean}
- */
-CWSWidgetContainerErrorDialog.prototype.shown = function() {
- return this.container_.classList.contains('shown');
-};
-
-/**
- * One-time initialization of DOM.
- * @private
- */
-CWSWidgetContainerErrorDialog.prototype.initDom_ = function() {
- cr.ui.dialogs.BaseDialog.prototype.initDom_.call(this);
- this.frame_.classList.add('cws-widget-error-dialog-frame');
- var img = this.document_.createElement('div');
- img.className = 'cws-widget-error-dialog-img';
- this.frame_.insertBefore(img, this.text_);
-
- this.title_.hidden = true;
- this.closeButton_.hidden = true;
- this.cancelButton_.hidden = true;
- this.text_.classList.add('cws-widget-error-dialog-text');
-
- // Don't allow OK button to lose focus, in order to prevent webview content
- // from stealing focus.
- // BaseDialog keeps focus by removing all other focusable elements from tab
- // order (by setting their tabIndex to -1). This doesn't work for webviews
- // because the webview embedder cannot access the webview DOM tree, and thus
- // fails to remove elements in the webview from tab order.
- this.okButton_.addEventListener('blur', this.refocusOkButton_.bind(this));
-};
-
-/**
- * Focuses OK button.
- * @private
- */
-CWSWidgetContainerErrorDialog.prototype.refocusOkButton_ = function() {
- if (this.shown())
- this.okButton_.focus();
-};
« no previous file with comments | « ui/file_manager/file_manager/foreground/js/main_scripts.js ('k') | ui/file_manager/file_manager/main.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698