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

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

Issue 2774373002: Use MojoCompositorFrameSink in RendererCompositorFrameSink (Closed)
Patch Set: Rebased, dedup IPC Created 3 years, 8 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/frame_sink_provider.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 // Handled by RenderViewHost. 25 // Handled by RenderViewHost.
26 case FrameHostMsg_RenderProcessGone::ID: 26 case FrameHostMsg_RenderProcessGone::ID:
27 case ViewHostMsg_ClosePage_ACK::ID: 27 case ViewHostMsg_ClosePage_ACK::ID:
28 case ViewHostMsg_Focus::ID: 28 case ViewHostMsg_Focus::ID:
29 case ViewHostMsg_ShowFullscreenWidget::ID: 29 case ViewHostMsg_ShowFullscreenWidget::ID:
30 case ViewHostMsg_ShowWidget::ID: 30 case ViewHostMsg_ShowWidget::ID:
31 case ViewHostMsg_SwapCompositorFrame::ID:
32 // Handled by SharedWorkerMessageFilter. 31 // Handled by SharedWorkerMessageFilter.
33 case ViewHostMsg_DocumentDetached::ID: 32 case ViewHostMsg_DocumentDetached::ID:
34 // Allow cross-process JavaScript calls. 33 // Allow cross-process JavaScript calls.
35 case ViewHostMsg_RouteCloseEvent::ID: 34 case ViewHostMsg_RouteCloseEvent::ID:
36 // Send page scale factor reset notification upon cross-process navigations. 35 // Send page scale factor reset notification upon cross-process navigations.
37 case ViewHostMsg_PageScaleFactorChanged::ID: 36 case ViewHostMsg_PageScaleFactorChanged::ID:
38 return true; 37 return true;
39 default: 38 default:
40 break; 39 break;
41 } 40 }
(...skipping 26 matching lines...) Expand all
68 case AccessibilityHostMsg_Events::ID: 67 case AccessibilityHostMsg_Events::ID:
69 return true; 68 return true;
70 default: 69 default:
71 break; 70 break;
72 } 71 }
73 72
74 return false; 73 return false;
75 } 74 }
76 75
77 } // namespace content 76 } // namespace content
OLDNEW
« no previous file with comments | « content/common/frame_sink_provider.mojom ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698