OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/tab_contents/background_contents.h" | 5 #include "chrome/browser/tab_contents/background_contents.h" |
6 | 6 |
7 #include "chrome/browser/background/background_contents_service.h" | 7 #include "chrome/browser/background/background_contents_service.h" |
8 #include "chrome/browser/extensions/extension_message_service.h" | 8 #include "chrome/browser/extensions/extension_message_service.h" |
9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
10 #include "chrome/browser/renderer_preferences_util.h" | 10 #include "chrome/browser/renderer_preferences_util.h" |
11 #include "chrome/browser/ui/webui/chrome_web_ui_factory.h" | 11 #include "chrome/browser/ui/webui/chrome_web_ui_factory.h" |
12 #include "chrome/common/chrome_notification_types.h" | 12 #include "chrome/common/chrome_notification_types.h" |
13 #include "chrome/common/extensions/extension_constants.h" | 13 #include "chrome/common/extensions/extension_constants.h" |
14 #include "chrome/common/url_constants.h" | 14 #include "chrome/common/url_constants.h" |
15 #include "chrome/common/chrome_view_type.h" | 15 #include "chrome/common/chrome_view_type.h" |
16 #include "content/browser/renderer_host/render_view_host.h" | 16 #include "content/browser/renderer_host/render_view_host.h" |
17 #include "content/browser/site_instance.h" | |
18 #include "content/public/browser/notification_service.h" | 17 #include "content/public/browser/notification_service.h" |
| 18 #include "content/public/browser/site_instance.h" |
19 #include "content/public/browser/web_contents.h" | 19 #include "content/public/browser/web_contents.h" |
20 #include "ui/gfx/rect.h" | 20 #include "ui/gfx/rect.h" |
21 | 21 |
| 22 using content::SiteInstance; |
22 using content::WebContents; | 23 using content::WebContents; |
23 | 24 |
24 BackgroundContents::BackgroundContents(SiteInstance* site_instance, | 25 BackgroundContents::BackgroundContents(SiteInstance* site_instance, |
25 int routing_id, | 26 int routing_id, |
26 Delegate* delegate) | 27 Delegate* delegate) |
27 : delegate_(delegate) { | 28 : delegate_(delegate) { |
28 profile_ = Profile::FromBrowserContext( | 29 profile_ = Profile::FromBrowserContext( |
29 site_instance->GetBrowserContext()); | 30 site_instance->GetBrowserContext()); |
30 | 31 |
31 // TODO(rafaelw): Implement correct session storage. | 32 // TODO(rafaelw): Implement correct session storage. |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 case chrome::NOTIFICATION_PROFILE_DESTROYED: | 124 case chrome::NOTIFICATION_PROFILE_DESTROYED: |
124 case content::NOTIFICATION_APP_TERMINATING: { | 125 case content::NOTIFICATION_APP_TERMINATING: { |
125 delete this; | 126 delete this; |
126 break; | 127 break; |
127 } | 128 } |
128 default: | 129 default: |
129 NOTREACHED() << "Unexpected notification sent."; | 130 NOTREACHED() << "Unexpected notification sent."; |
130 break; | 131 break; |
131 } | 132 } |
132 } | 133 } |
OLD | NEW |