| Index: chrome/browser/guestview/webview/webview_guest.h
|
| diff --git a/chrome/browser/guestview/webview/webview_guest.h b/chrome/browser/guestview/webview/webview_guest.h
|
| index 48e0ea4f75bc30ee8a6f2731bf1fc32c9a6bb322..a1d8877c48665025ec74b98d6d7124f6fc34450d 100644
|
| --- a/chrome/browser/guestview/webview/webview_guest.h
|
| +++ b/chrome/browser/guestview/webview/webview_guest.h
|
| @@ -26,7 +26,8 @@ class WebViewGuest : public GuestView,
|
| public content::NotificationObserver,
|
| public content::WebContentsObserver {
|
| public:
|
| - explicit WebViewGuest(content::WebContents* guest_web_contents);
|
| + WebViewGuest(content::WebContents* guest_web_contents,
|
| + const std::string& extension_id);
|
|
|
| static WebViewGuest* From(int embedder_process_id, int instance_id);
|
| static WebViewGuest* FromWebContents(content::WebContents* contents);
|
| @@ -62,6 +63,7 @@ class WebViewGuest : public GuestView,
|
| const base::DictionaryValue& request_info,
|
| const PermissionResponseCallback& callback,
|
| bool allowed_by_default) OVERRIDE;
|
| + virtual GURL ResolveURL(const std::string& src) OVERRIDE;
|
| virtual void SizeChanged(const gfx::Size& old_size, const gfx::Size& new_size)
|
| OVERRIDE;
|
|
|
|
|