Index: content/shell/browser/shell.cc |
diff --git a/content/shell/browser/shell.cc b/content/shell/browser/shell.cc |
index 58b53e2d11ed169ca37c0c6a328bd1d2942510f1..c2967afd5997fd4e42fb3c52cb32a452b725aeac 100644 |
--- a/content/shell/browser/shell.cc |
+++ b/content/shell/browser/shell.cc |
@@ -154,10 +154,8 @@ gfx::Size Shell::AdjustWindowSize(const gfx::Size& initial_size) { |
Shell* Shell::CreateNewWindow(BrowserContext* browser_context, |
const GURL& url, |
SiteInstance* site_instance, |
- int routing_id, |
const gfx::Size& initial_size) { |
WebContents::CreateParams create_params(browser_context, site_instance); |
- create_params.routing_id = routing_id; |
create_params.initial_size = AdjustWindowSize(initial_size); |
WebContents* web_contents = WebContents::Create(create_params); |
Shell* shell = CreateShell(web_contents, create_params.initial_size); |