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

Unified Diff: chrome/browser/resources/identity_scope_approval_dialog/scope_approval_dialog.js

Issue 15962012: Revert "Identity API: Add component app for auth flow UI" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/identity_scope_approval_dialog/scope_approval_dialog.js
diff --git a/chrome/browser/resources/identity_scope_approval_dialog/scope_approval_dialog.js b/chrome/browser/resources/identity_scope_approval_dialog/scope_approval_dialog.js
deleted file mode 100644
index 4f58d1906c3407c7b8b1abb73265f332067b6ce7..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/identity_scope_approval_dialog/scope_approval_dialog.js
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright 2013 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.
-
-var webview;
-
-/**
- * Points the webview to the starting URL of a scope authorization
- * flow, and unhides the dialog once the page has loaded.
- * @param {string} url The url of the authorization entry point.
- * @param {Object} win The dialog window that contains this page. Can
- * be left undefined if the caller does not want to display the
- * window.
- */
-function loadAuthUrlAndShowWindow(url, win) {
- webview.src = url;
- if (win) {
- webview.addEventListener('loadstop', function() {
- win.show();
- });
- }
-}
-
-document.addEventListener('DOMContentLoaded', function() {
- webview = document.querySelector('webview');
-
- document.querySelector('.titlebar-close-button').onclick = function() {
- window.close();
- };
-
- chrome.identityPrivate.getResources(function(resources) {
- var style = document.styleSheets[0];
-
- function insertRule(selector, url) {
- style.insertRule(selector + ' { background-image: url(' + url + '); }',
- style.cssRules.length);
- }
-
- insertRule('.titlebar-close-button', resources.IDR_CLOSE_DIALOG);
- insertRule('.titlebar-close-button:hover', resources.IDR_CLOSE_DIALOG_H);
- insertRule('.titlebar-close-button:active', resources.IDR_CLOSE_DIALOG_P);
-
- document.title = resources.IDS_EXTENSION_PERMISSIONS_PROMPT_TITLE;
- });
-});
-

Powered by Google App Engine
This is Rietveld 408576698