| 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/notifications/balloon_host.h" | 5 #include "chrome/browser/notifications/balloon_host.h" |
| 6 #include "chrome/browser/notifications/balloon.h" | 6 #include "chrome/browser/notifications/balloon.h" |
| 7 #include "chrome/browser/notifications/notification.h" | 7 #include "chrome/browser/notifications/notification.h" |
| 8 #include "chrome/browser/profiles/profile.h" | 8 #include "chrome/browser/profiles/profile.h" |
| 9 #include "chrome/browser/renderer_preferences_util.h" | 9 #include "chrome/browser/renderer_preferences_util.h" |
| 10 #include "chrome/browser/ui/browser_list.h" | 10 #include "chrome/browser/ui/browser_list.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_messages.h" | 13 #include "chrome/common/extensions/extension_messages.h" |
| 14 #include "chrome/common/render_messages.h" | 14 #include "chrome/common/render_messages.h" |
| 15 #include "chrome/common/url_constants.h" | 15 #include "chrome/common/url_constants.h" |
| 16 #include "chrome/common/chrome_view_type.h" | 16 #include "chrome/common/chrome_view_type.h" |
| 17 #include "content/browser/renderer_host/render_view_host.h" | 17 #include "content/browser/renderer_host/render_view_host.h" |
| 18 #include "content/browser/site_instance.h" | |
| 19 #include "content/public/browser/navigation_controller.h" | 18 #include "content/public/browser/navigation_controller.h" |
| 20 #include "content/public/browser/notification_service.h" | 19 #include "content/public/browser/notification_service.h" |
| 21 #include "content/public/browser/notification_source.h" | 20 #include "content/public/browser/notification_source.h" |
| 22 #include "content/public/browser/render_process_host.h" | 21 #include "content/public/browser/render_process_host.h" |
| 22 #include "content/public/browser/site_instance.h" |
| 23 #include "content/public/browser/web_contents.h" | 23 #include "content/public/browser/web_contents.h" |
| 24 #include "content/public/common/bindings_policy.h" | 24 #include "content/public/common/bindings_policy.h" |
| 25 #include "content/public/common/renderer_preferences.h" | 25 #include "content/public/common/renderer_preferences.h" |
| 26 #include "ipc/ipc_message.h" | 26 #include "ipc/ipc_message.h" |
| 27 #include "webkit/glue/webpreferences.h" | 27 #include "webkit/glue/webpreferences.h" |
| 28 | 28 |
| 29 using content::WebContents; | 29 using content::WebContents; |
| 30 | 30 |
| 31 BalloonHost::BalloonHost(Balloon* balloon) | 31 BalloonHost::BalloonHost(Balloon* balloon) |
| 32 : balloon_(balloon), | 32 : balloon_(balloon), |
| 33 initialized_(false), | 33 initialized_(false), |
| 34 should_notify_on_disconnect_(false), | 34 should_notify_on_disconnect_(false), |
| 35 enable_web_ui_(false), | 35 enable_web_ui_(false), |
| 36 ALLOW_THIS_IN_INITIALIZER_LIST( | 36 ALLOW_THIS_IN_INITIALIZER_LIST( |
| 37 extension_function_dispatcher_(balloon_->profile(), this)) { | 37 extension_function_dispatcher_(balloon_->profile(), this)) { |
| 38 site_instance_ = SiteInstance::CreateSiteInstanceForURL( | 38 site_instance_ = content::SiteInstance::CreateSiteInstanceForURL( |
| 39 balloon_->profile(), balloon_->notification().content_url()); | 39 balloon_->profile(), balloon_->notification().content_url()); |
| 40 } | 40 } |
| 41 | 41 |
| 42 void BalloonHost::Shutdown() { | 42 void BalloonHost::Shutdown() { |
| 43 NotifyDisconnect(); | 43 NotifyDisconnect(); |
| 44 web_contents_.reset(); | 44 web_contents_.reset(); |
| 45 } | 45 } |
| 46 | 46 |
| 47 Browser* BalloonHost::GetBrowser() { | 47 Browser* BalloonHost::GetBrowser() { |
| 48 // Notifications aren't associated with a particular browser. | 48 // Notifications aren't associated with a particular browser. |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 should_notify_on_disconnect_ = false; | 142 should_notify_on_disconnect_ = false; |
| 143 content::NotificationService::current()->Notify( | 143 content::NotificationService::current()->Notify( |
| 144 chrome::NOTIFICATION_NOTIFY_BALLOON_DISCONNECTED, | 144 chrome::NOTIFICATION_NOTIFY_BALLOON_DISCONNECTED, |
| 145 content::Source<BalloonHost>(this), | 145 content::Source<BalloonHost>(this), |
| 146 content::NotificationService::NoDetails()); | 146 content::NotificationService::NoDetails()); |
| 147 } | 147 } |
| 148 | 148 |
| 149 bool BalloonHost::IsRenderViewReady() const { | 149 bool BalloonHost::IsRenderViewReady() const { |
| 150 return should_notify_on_disconnect_; | 150 return should_notify_on_disconnect_; |
| 151 } | 151 } |
| OLD | NEW |