OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/extensions/app_window_contents.h" | 5 #include "chrome/browser/extensions/app_window_contents.h" |
6 | 6 |
| 7 #include "chrome/browser/profiles/profile.h" |
7 #include "chrome/browser/ui/extensions/native_app_window.h" | 8 #include "chrome/browser/ui/extensions/native_app_window.h" |
8 #include "chrome/common/chrome_notification_types.h" | 9 #include "chrome/common/chrome_notification_types.h" |
9 #include "chrome/common/extensions/api/app_window.h" | 10 #include "chrome/common/extensions/api/app_window.h" |
10 #include "chrome/common/extensions/extension_messages.h" | 11 #include "chrome/common/extensions/extension_messages.h" |
11 #include "content/public/browser/browser_thread.h" | 12 #include "content/public/browser/browser_thread.h" |
12 #include "content/public/browser/render_process_host.h" | 13 #include "content/public/browser/render_process_host.h" |
13 #include "content/public/browser/render_view_host.h" | 14 #include "content/public/browser/render_view_host.h" |
14 #include "content/public/browser/resource_dispatcher_host.h" | 15 #include "content/public/browser/resource_dispatcher_host.h" |
15 #include "content/public/browser/site_instance.h" | 16 #include "content/public/browser/site_instance.h" |
16 #include "content/public/browser/web_contents.h" | 17 #include "content/public/browser/web_contents.h" |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 | 164 |
164 void AppWindowContents::SuspendRenderViewHost( | 165 void AppWindowContents::SuspendRenderViewHost( |
165 content::RenderViewHost* rvh) { | 166 content::RenderViewHost* rvh) { |
166 DCHECK(rvh); | 167 DCHECK(rvh); |
167 content::BrowserThread::PostTask( | 168 content::BrowserThread::PostTask( |
168 content::BrowserThread::IO, FROM_HERE, | 169 content::BrowserThread::IO, FROM_HERE, |
169 base::Bind(&content::ResourceDispatcherHost::BlockRequestsForRoute, | 170 base::Bind(&content::ResourceDispatcherHost::BlockRequestsForRoute, |
170 base::Unretained(content::ResourceDispatcherHost::Get()), | 171 base::Unretained(content::ResourceDispatcherHost::Get()), |
171 rvh->GetProcess()->GetID(), rvh->GetRoutingID())); | 172 rvh->GetProcess()->GetID(), rvh->GetRoutingID())); |
172 } | 173 } |
OLD | NEW |