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 f7ca2908f72de01663b09ff9edfdecbc4ea2d6c1..d13bbc3efbfef3cc72bc8877c3ee87dbefcee416 100644 |
--- a/chrome/browser/guest_view/extension_options/extension_options_guest.cc |
+++ b/chrome/browser/guest_view/extension_options/extension_options_guest.cc |
@@ -157,20 +157,20 @@ bool ExtensionOptionsGuest::IsAutoSizeSupported() const { |
void ExtensionOptionsGuest::SetUpAutoSize() { |
// Read the autosize parameters passed in from the embedder. |
bool auto_size_enabled = false; |
- extra_params()->GetBoolean(extensionoptions::kAttributeAutoSize, |
+ 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. |