| Index: chrome/browser/guest_view/web_view/web_view_guest.h
|
| diff --git a/chrome/browser/guest_view/web_view/web_view_guest.h b/chrome/browser/guest_view/web_view/web_view_guest.h
|
| index a22ba01afa9446fd3a74bad3c031ffcf1abe63ee..68fa3079eed11ac8a95253f7fb3016e182ebbc2f 100644
|
| --- a/chrome/browser/guest_view/web_view/web_view_guest.h
|
| +++ b/chrome/browser/guest_view/web_view/web_view_guest.h
|
| @@ -63,6 +63,9 @@ class WebViewGuest : public GuestView<WebViewGuest>,
|
| // Sets the frame name of the guest.
|
| void SetName(const std::string& name);
|
|
|
| + // Set the zoom factor.
|
| + void SetZoom(double zoom_factor);
|
| +
|
| // GuestViewBase implementation.
|
| virtual void Attach(content::WebContents* embedder_web_contents,
|
| const base::DictionaryValue& args) OVERRIDE;
|
| @@ -139,9 +142,6 @@ class WebViewGuest : public GuestView<WebViewGuest>,
|
| const content::NotificationSource& source,
|
| const content::NotificationDetails& details) OVERRIDE;
|
|
|
| - // Set the zoom factor.
|
| - virtual void SetZoom(double zoom_factor) OVERRIDE;
|
| -
|
| // Returns the current zoom factor.
|
| double GetZoom();
|
|
|
|
|