Index: chrome/browser/guest_view/extension_options/extension_options_guest.cc |
diff --git a/chrome/browser/guest_view/extension_options/extension_options_guest.cc b/chrome/browser/guest_view/extension_options/extension_options_guest.cc |
index 3ca78ecfec820868a02aace06a3c3d6843d8e715..a74e14c62c32334a7321dbee85a1530430e421f7 100644 |
--- a/chrome/browser/guest_view/extension_options/extension_options_guest.cc |
+++ b/chrome/browser/guest_view/extension_options/extension_options_guest.cc |
@@ -155,20 +155,20 @@ bool ExtensionOptionsGuest::IsAutoSizeSupported() const { |
void ExtensionOptionsGuest::SetUpAutoSize() { |
// Read the autosize parameters passed in from the embedder. |
bool auto_size_enabled; |
- extra_params()->GetBoolean(extensionoptions::kAttributeAutoSize, |
- &auto_size_enabled); |
+ attach_params()->GetBoolean(extensionoptions::kAttributeAutoSize, |
+ &auto_size_enabled); |
int max_height = 0; |
int max_width = 0; |
- extra_params()->GetInteger(extensionoptions::kAttributeMaxHeight, |
- &max_height); |
- extra_params()->GetInteger(extensionoptions::kAttributeMaxWidth, &max_width); |
+ attach_params()->GetInteger(extensionoptions::kAttributeMaxHeight, |
+ &max_height); |
+ attach_params()->GetInteger(extensionoptions::kAttributeMaxWidth, &max_width); |
int min_height = 0; |
int min_width = 0; |
- extra_params()->GetInteger(extensionoptions::kAttributeMinHeight, |
- &min_height); |
- extra_params()->GetInteger(extensionoptions::kAttributeMinWidth, &min_width); |
+ attach_params()->GetInteger(extensionoptions::kAttributeMinHeight, |
+ &min_height); |
+ attach_params()->GetInteger(extensionoptions::kAttributeMinWidth, &min_width); |
// Call SetAutoSize to apply all the appropriate validation and clipping of |
// values. |