Index: chrome/browser/ui/apps/chrome_app_delegate.cc |
diff --git a/chrome/browser/ui/apps/chrome_app_delegate.cc b/chrome/browser/ui/apps/chrome_app_delegate.cc |
index f58447c8a61662859bcef3d1e1411a5ba305b4a8..a20e8b55aa3687a777ea22e99dd6b53d70727e78 100644 |
--- a/chrome/browser/ui/apps/chrome_app_delegate.cc |
+++ b/chrome/browser/ui/apps/chrome_app_delegate.cc |
@@ -19,6 +19,7 @@ |
#include "chrome/browser/ui/browser_tabstrip.h" |
#include "chrome/browser/ui/browser_window.h" |
#include "chrome/browser/ui/scoped_tabbed_browser_displayer.h" |
+#include "chrome/browser/ui/web_contents_sizer.h" |
#include "chrome/common/extensions/chrome_extension_messages.h" |
#include "content/public/browser/browser_context.h" |
#include "content/public/browser/notification_service.h" |
@@ -176,6 +177,11 @@ void ChromeAppDelegate::InitWebContents(content::WebContents* web_contents) { |
web_contents); |
} |
+void ChromeAppDelegate::ResizeWebContents(content::WebContents* web_contents, |
+ const gfx::Size& size) { |
+ ResizeWebContents(web_contents, size); |
Peter Kasting
2014/08/26 18:05:06
Won't symbol resolution rules result in this metho
hashimoto
2014/08/27 01:47:15
Ugh, good catch.
Fixed to call the right function.
|
+} |
+ |
content::WebContents* ChromeAppDelegate::OpenURLFromTab( |
content::BrowserContext* context, |
content::WebContents* source, |