Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Side by Side Diff: chrome/browser/notifications/balloon_host.cc

Issue 5172009: This adds some plumbing for propagating the reason for a renderer's death (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Renaming PROCESS_END_* to EXIT_CODE_* Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 6
7 #include "chrome/browser/browser_list.h" 7 #include "chrome/browser/browser_list.h"
8 #include "chrome/browser/extensions/extension_process_manager.h" 8 #include "chrome/browser/extensions/extension_process_manager.h"
9 #include "chrome/browser/notifications/balloon.h" 9 #include "chrome/browser/notifications/balloon.h"
10 #include "chrome/browser/notifications/notification.h" 10 #include "chrome/browser/notifications/notification.h"
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 } 84 }
85 85
86 TabContents* BalloonHost::associated_tab_contents() const { return NULL; } 86 TabContents* BalloonHost::associated_tab_contents() const { return NULL; }
87 87
88 const string16& BalloonHost::GetSource() const { 88 const string16& BalloonHost::GetSource() const {
89 return balloon_->notification().display_source(); 89 return balloon_->notification().display_source();
90 } 90 }
91 91
92 WebPreferences BalloonHost::GetWebkitPrefs() { 92 WebPreferences BalloonHost::GetWebkitPrefs() {
93 WebPreferences web_prefs = 93 WebPreferences web_prefs =
94 RenderViewHostDelegateHelper::GetWebkitPrefs(GetProfile(), enable_dom_ui_) ; 94 RenderViewHostDelegateHelper::GetWebkitPrefs(GetProfile(),
95 enable_dom_ui_);
95 web_prefs.allow_scripts_to_close_windows = true; 96 web_prefs.allow_scripts_to_close_windows = true;
96 return web_prefs; 97 return web_prefs;
97 } 98 }
98 99
99 SiteInstance* BalloonHost::GetSiteInstance() const { 100 SiteInstance* BalloonHost::GetSiteInstance() const {
100 return site_instance_.get(); 101 return site_instance_.get();
101 } 102 }
102 103
103 Profile* BalloonHost::GetProfile() const { 104 Profile* BalloonHost::GetProfile() const {
104 return balloon_->profile(); 105 return balloon_->profile();
(...skipping 18 matching lines...) Expand all
123 #endif 124 #endif
124 } 125 }
125 126
126 void BalloonHost::RenderViewReady(RenderViewHost* render_view_host) { 127 void BalloonHost::RenderViewReady(RenderViewHost* render_view_host) {
127 should_notify_on_disconnect_ = true; 128 should_notify_on_disconnect_ = true;
128 NotificationService::current()->Notify( 129 NotificationService::current()->Notify(
129 NotificationType::NOTIFY_BALLOON_CONNECTED, 130 NotificationType::NOTIFY_BALLOON_CONNECTED,
130 Source<BalloonHost>(this), NotificationService::NoDetails()); 131 Source<BalloonHost>(this), NotificationService::NoDetails());
131 } 132 }
132 133
133 void BalloonHost::RenderViewGone(RenderViewHost* render_view_host) { 134 void BalloonHost::RenderViewGone(RenderViewHost* render_view_host,
135 base::TerminationStatus status,
136 int error_code) {
134 Close(render_view_host); 137 Close(render_view_host);
135 } 138 }
136 139
137 int BalloonHost::GetBrowserWindowID() const { 140 int BalloonHost::GetBrowserWindowID() const {
138 return extension_misc::kUnknownWindowId; 141 return extension_misc::kUnknownWindowId;
139 } 142 }
140 143
141 ViewType::Type BalloonHost::GetRenderViewType() const { 144 ViewType::Type BalloonHost::GetRenderViewType() const {
142 return ViewType::NOTIFICATION; 145 return ViewType::NOTIFICATION;
143 } 146 }
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 264
262 void BalloonHost::NotifyDisconnect() { 265 void BalloonHost::NotifyDisconnect() {
263 if (!should_notify_on_disconnect_) 266 if (!should_notify_on_disconnect_)
264 return; 267 return;
265 268
266 should_notify_on_disconnect_ = false; 269 should_notify_on_disconnect_ = false;
267 NotificationService::current()->Notify( 270 NotificationService::current()->Notify(
268 NotificationType::NOTIFY_BALLOON_DISCONNECTED, 271 NotificationType::NOTIFY_BALLOON_DISCONNECTED,
269 Source<BalloonHost>(this), NotificationService::NoDetails()); 272 Source<BalloonHost>(this), NotificationService::NoDetails());
270 } 273 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698