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

Side by Side Diff: content/common/swapped_out_messages.cc

Issue 30323002: [DRAFT] Create RenderFrameHostManager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Misc fixes Created 7 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
« no previous file with comments | « content/common/frame_messages.h ('k') | content/renderer/render_frame_impl.h » ('j') | 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) 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 "content/common/swapped_out_messages.h" 5 #include "content/common/swapped_out_messages.h"
6 6
7 #include "content/common/accessibility_messages.h" 7 #include "content/common/accessibility_messages.h"
8 #include "content/common/frame_messages.h" 8 #include "content/common/frame_messages.h"
9 #include "content/common/input_messages.h" 9 #include "content/common/input_messages.h"
10 #include "content/common/view_messages.h" 10 #include "content/common/view_messages.h"
(...skipping 15 matching lines...) Expand all
26 case ViewHostMsg_Focus::ID: 26 case ViewHostMsg_Focus::ID:
27 // Handled by RenderView. 27 // Handled by RenderView.
28 case ViewHostMsg_RenderProcessGone::ID: 28 case ViewHostMsg_RenderProcessGone::ID:
29 case ViewHostMsg_ShouldClose_ACK::ID: 29 case ViewHostMsg_ShouldClose_ACK::ID:
30 case ViewHostMsg_SwapOut_ACK::ID: 30 case ViewHostMsg_SwapOut_ACK::ID:
31 case ViewHostMsg_ClosePage_ACK::ID: 31 case ViewHostMsg_ClosePage_ACK::ID:
32 case ViewHostMsg_DomOperationResponse::ID: 32 case ViewHostMsg_DomOperationResponse::ID:
33 case ViewHostMsg_SwapCompositorFrame::ID: 33 case ViewHostMsg_SwapCompositorFrame::ID:
34 case ViewHostMsg_UpdateIsDelayed::ID: 34 case ViewHostMsg_UpdateIsDelayed::ID:
35 case ViewHostMsg_DidActivateAcceleratedCompositing::ID: 35 case ViewHostMsg_DidActivateAcceleratedCompositing::ID:
36 // Handled by RenderFrame.
37 case FrameHostMsg_SwapOut_ACK::ID:
36 // Allow cross-process JavaScript calls. 38 // Allow cross-process JavaScript calls.
37 case ViewHostMsg_RouteCloseEvent::ID: 39 case ViewHostMsg_RouteCloseEvent::ID:
38 case ViewHostMsg_RouteMessageEvent::ID: 40 case ViewHostMsg_RouteMessageEvent::ID:
39 // Frame detach must occur after the RenderView has swapped out. 41 // Frame detach must occur after the RenderView has swapped out.
40 case FrameHostMsg_Detach::ID: 42 case FrameHostMsg_Detach::ID:
41 return true; 43 return true;
42 default: 44 default:
43 break; 45 break;
44 } 46 }
45 47
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 default: 90 default:
89 break; 91 break;
90 } 92 }
91 93
92 // Check with the embedder as well. 94 // Check with the embedder as well.
93 ContentClient* client = GetContentClient(); 95 ContentClient* client = GetContentClient();
94 return client->CanHandleWhileSwappedOut(msg); 96 return client->CanHandleWhileSwappedOut(msg);
95 } 97 }
96 98
97 } // namespace content 99 } // namespace content
OLDNEW
« no previous file with comments | « content/common/frame_messages.h ('k') | content/renderer/render_frame_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698