| 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
|
| index 7c23d38a234e328d78dea5f3679154e412f09a93..b2e5feb1f6a4f858e9d47169a0ca61bada325e8f 100644
|
| --- a/chrome/browser/resources/identity_scope_approval_dialog/scope_approval_dialog.js
|
| +++ b/chrome/browser/resources/identity_scope_approval_dialog/scope_approval_dialog.js
|
| @@ -47,19 +47,8 @@ document.addEventListener('DOMContentLoaded', 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;
|
| + chrome.identityPrivate.getStrings(function(strings) {
|
| + document.title = strings['window-title'];
|
| });
|
| });
|
|
|
|
|