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

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

Issue 2506183002: Make window.open() IPCs be frame-based (Closed)
Patch Set: Rebase. Created 3 years, 11 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
« no previous file with comments | « content/common/render_message_filter.mojom ('k') | content/common/view_messages.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 10 matching lines...) Expand all
21 case InputHostMsg_HandleInputEvent_ACK::ID: 21 case InputHostMsg_HandleInputEvent_ACK::ID:
22 case ViewHostMsg_UpdateRect::ID: 22 case ViewHostMsg_UpdateRect::ID:
23 // Handled by RenderWidgetHostView. 23 // Handled by RenderWidgetHostView.
24 case ViewHostMsg_SetNeedsBeginFrames::ID: 24 case ViewHostMsg_SetNeedsBeginFrames::ID:
25 // Allow targeted navigations while swapped out. 25 // Allow targeted navigations while swapped out.
26 case FrameHostMsg_OpenURL::ID: 26 case FrameHostMsg_OpenURL::ID:
27 case ViewHostMsg_Focus::ID: 27 case ViewHostMsg_Focus::ID:
28 // Handled by RenderViewHost. 28 // Handled by RenderViewHost.
29 case ViewHostMsg_ClosePage_ACK::ID: 29 case ViewHostMsg_ClosePage_ACK::ID:
30 case ViewHostMsg_ShowFullscreenWidget::ID: 30 case ViewHostMsg_ShowFullscreenWidget::ID:
31 case ViewHostMsg_ShowView::ID:
32 case ViewHostMsg_ShowWidget::ID: 31 case ViewHostMsg_ShowWidget::ID:
33 case ViewHostMsg_SwapCompositorFrame::ID: 32 case ViewHostMsg_SwapCompositorFrame::ID:
34 // Handled by SharedWorkerMessageFilter. 33 // Handled by SharedWorkerMessageFilter.
35 case ViewHostMsg_DocumentDetached::ID: 34 case ViewHostMsg_DocumentDetached::ID:
36 // Allow cross-process JavaScript calls. 35 // Allow cross-process JavaScript calls.
37 case ViewHostMsg_RouteCloseEvent::ID: 36 case ViewHostMsg_RouteCloseEvent::ID:
38 // Send page scale factor reset notification upon cross-process navigations. 37 // Send page scale factor reset notification upon cross-process navigations.
39 case ViewHostMsg_PageScaleFactorChanged::ID: 38 case ViewHostMsg_PageScaleFactorChanged::ID:
40 // Handled by RenderFrameHost. 39 // Handled by RenderFrameHost.
41 case FrameHostMsg_BeforeUnload_ACK::ID: 40 case FrameHostMsg_BeforeUnload_ACK::ID:
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 case AccessibilityHostMsg_Events::ID: 82 case AccessibilityHostMsg_Events::ID:
84 return true; 83 return true;
85 default: 84 default:
86 break; 85 break;
87 } 86 }
88 87
89 return false; 88 return false;
90 } 89 }
91 90
92 } // namespace content 91 } // namespace content
OLDNEW
« no previous file with comments | « content/common/render_message_filter.mojom ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698