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 "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 12 matching lines...) Expand all Loading... |
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_ShowWidget::ID: | 31 case ViewHostMsg_ShowWidget::ID: |
32 case ViewHostMsg_SwapCompositorFrame::ID: | 32 case ViewHostMsg_SwapCompositorFrame::ID: |
33 // Handled by SharedWorkerMessageFilter. | |
34 case ViewHostMsg_DocumentDetached::ID: | |
35 // Allow cross-process JavaScript calls. | 33 // Allow cross-process JavaScript calls. |
36 case ViewHostMsg_RouteCloseEvent::ID: | 34 case ViewHostMsg_RouteCloseEvent::ID: |
37 // Send page scale factor reset notification upon cross-process navigations. | 35 // Send page scale factor reset notification upon cross-process navigations. |
38 case ViewHostMsg_PageScaleFactorChanged::ID: | 36 case ViewHostMsg_PageScaleFactorChanged::ID: |
39 // Handled by RenderFrameHost. | 37 // Handled by RenderFrameHost. |
40 case FrameHostMsg_BeforeUnload_ACK::ID: | 38 case FrameHostMsg_BeforeUnload_ACK::ID: |
41 case FrameHostMsg_SwapOut_ACK::ID: | 39 case FrameHostMsg_SwapOut_ACK::ID: |
42 case FrameHostMsg_RenderProcessGone::ID: | 40 case FrameHostMsg_RenderProcessGone::ID: |
43 // Frame detach must occur after the RenderView has swapped out. | 41 // Frame detach must occur after the RenderView has swapped out. |
44 case FrameHostMsg_Detach::ID: | 42 case FrameHostMsg_Detach::ID: |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 case AccessibilityHostMsg_Events::ID: | 80 case AccessibilityHostMsg_Events::ID: |
83 return true; | 81 return true; |
84 default: | 82 default: |
85 break; | 83 break; |
86 } | 84 } |
87 | 85 |
88 return false; | 86 return false; |
89 } | 87 } |
90 | 88 |
91 } // namespace content | 89 } // namespace content |
OLD | NEW |