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

Side by Side Diff: content/common/notification_type.h

Issue 6927014: Avoid exiting the renderer process if it has a pending render view. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More feedback. Created 9 years, 7 months 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
« no previous file with comments | « content/browser/tab_contents/render_view_host_manager.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef CONTENT_COMMON_NOTIFICATION_TYPE_H_ 5 #ifndef CONTENT_COMMON_NOTIFICATION_TYPE_H_
6 #define CONTENT_COMMON_NOTIFICATION_TYPE_H_ 6 #define CONTENT_COMMON_NOTIFICATION_TYPE_H_
7 #pragma once 7 #pragma once
8 8
9 // This file describes various types used to describe and filter notifications 9 // This file describes various types used to describe and filter notifications
10 // that pass through the NotificationService. 10 // that pass through the NotificationService.
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 401
402 // Indicates that a RenderProcessHost was created and its handle is now 402 // Indicates that a RenderProcessHost was created and its handle is now
403 // available. The source will be the RenderProcessHost that corresponds to 403 // available. The source will be the RenderProcessHost that corresponds to
404 // the process. 404 // the process.
405 RENDERER_PROCESS_CREATED, 405 RENDERER_PROCESS_CREATED,
406 406
407 // Indicates that a RenderProcessHost is destructing. The source will be the 407 // Indicates that a RenderProcessHost is destructing. The source will be the
408 // RenderProcessHost that corresponds to the process. 408 // RenderProcessHost that corresponds to the process.
409 RENDERER_PROCESS_TERMINATED, 409 RENDERER_PROCESS_TERMINATED,
410 410
411 // Indicates that a render process is starting to exit, such that it should
412 // not be used for future navigations. The source will be the
413 // RenderProcessHost that corresponds to the process.
414 RENDERER_PROCESS_CLOSING,
415
411 // Indicates that a render process was closed (meaning it exited, but the 416 // Indicates that a render process was closed (meaning it exited, but the
412 // RenderProcessHost might be reused). The source will be the corresponding 417 // RenderProcessHost might be reused). The source will be the corresponding
413 // RenderProcessHost. The details will be a RendererClosedDetails struct. 418 // RenderProcessHost. The details will be a RendererClosedDetails struct.
414 // This may get sent along with RENDERER_PROCESS_TERMINATED. 419 // This may get sent along with RENDERER_PROCESS_TERMINATED.
415 RENDERER_PROCESS_CLOSED, 420 RENDERER_PROCESS_CLOSED,
416 421
417 // Indicates that a render process has become unresponsive for a period of 422 // Indicates that a render process has become unresponsive for a period of
418 // time. The source will be the RenderWidgetHost that corresponds to the 423 // time. The source will be the RenderWidgetHost that corresponds to the
419 // hung view, and no details are expected. 424 // hung view, and no details are expected.
420 RENDERER_PROCESS_HANG, 425 RENDERER_PROCESS_HANG,
(...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after
1306 }; 1311 };
1307 1312
1308 inline bool operator==(NotificationType::Type a, NotificationType b) { 1313 inline bool operator==(NotificationType::Type a, NotificationType b) {
1309 return a == b.value; 1314 return a == b.value;
1310 } 1315 }
1311 inline bool operator!=(NotificationType::Type a, NotificationType b) { 1316 inline bool operator!=(NotificationType::Type a, NotificationType b) {
1312 return a != b.value; 1317 return a != b.value;
1313 } 1318 }
1314 1319
1315 #endif // CONTENT_COMMON_NOTIFICATION_TYPE_H_ 1320 #endif // CONTENT_COMMON_NOTIFICATION_TYPE_H_
OLDNEW
« no previous file with comments | « content/browser/tab_contents/render_view_host_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698