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

Unified Diff: chrome/renderer/resources/extensions/extension_options.js

Issue 455063002: Fix autosize related bugs in <extensionoptions> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « chrome/browser/guest_view/extension_options/extension_options_guest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/resources/extensions/extension_options.js
diff --git a/chrome/renderer/resources/extensions/extension_options.js b/chrome/renderer/resources/extensions/extension_options.js
index 006ce49602719b6bedeaff7449c7484298cf1269..854b550e19a1040efe2408a71a5bef43eec361a7 100644
--- a/chrome/renderer/resources/extensions/extension_options.js
+++ b/chrome/renderer/resources/extensions/extension_options.js
@@ -76,18 +76,6 @@ ExtensionOptionsInternal.prototype.createGuest = function() {
this.dispatchEvent(createFailedEvent);
} else {
this.attachWindow(instanceId);
- GuestViewInternal.setAutoSize(this.instanceId, {
- 'enableAutoSize':
- this.extensionoptionsNode.hasAttribute('autosize'),
- 'min': {
- 'width': parseInt(this.minwidth || 0),
- 'height': parseInt(this.minheight || 0)
- },
- 'max': {
- 'width': parseInt(this.maxwidth || 0),
- 'height': parseInt(this.maxheight || 0)
- }
- });
}
}.bind(this));
};
« no previous file with comments | « chrome/browser/guest_view/extension_options/extension_options_guest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698