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

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

Issue 2600113003: (SUSPENDED) SharedWorker: Mojofy Renderer(Document)->Browser communication for SharedWorker
Patch Set: 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
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 13 matching lines...) Expand all
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: 31 case ViewHostMsg_ShowView::ID:
32 case ViewHostMsg_ShowWidget::ID: 32 case ViewHostMsg_ShowWidget::ID:
33 case ViewHostMsg_SwapCompositorFrame::ID: 33 case ViewHostMsg_SwapCompositorFrame::ID:
34 // Handled by SharedWorkerMessageFilter.
35 case ViewHostMsg_DocumentDetached::ID:
36 // Allow cross-process JavaScript calls. 34 // Allow cross-process JavaScript calls.
37 case ViewHostMsg_RouteCloseEvent::ID: 35 case ViewHostMsg_RouteCloseEvent::ID:
38 // Send page scale factor reset notification upon cross-process navigations. 36 // Send page scale factor reset notification upon cross-process navigations.
39 case ViewHostMsg_PageScaleFactorChanged::ID: 37 case ViewHostMsg_PageScaleFactorChanged::ID:
40 // Handled by RenderFrameHost. 38 // Handled by RenderFrameHost.
41 case FrameHostMsg_BeforeUnload_ACK::ID: 39 case FrameHostMsg_BeforeUnload_ACK::ID:
42 case FrameHostMsg_SwapOut_ACK::ID: 40 case FrameHostMsg_SwapOut_ACK::ID:
43 case FrameHostMsg_RenderProcessGone::ID: 41 case FrameHostMsg_RenderProcessGone::ID:
44 // Frame detach must occur after the RenderView has swapped out. 42 // Frame detach must occur after the RenderView has swapped out.
45 case FrameHostMsg_Detach::ID: 43 case FrameHostMsg_Detach::ID:
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 case AccessibilityHostMsg_Events::ID: 81 case AccessibilityHostMsg_Events::ID:
84 return true; 82 return true;
85 default: 83 default:
86 break; 84 break;
87 } 85 }
88 86
89 return false; 87 return false;
90 } 88 }
91 89
92 } // namespace content 90 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698