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

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

Issue 2835403004: Revert "Use MojoCompositorFrameSink in RendererCompositorFrameSink"
Patch Set: Rebased Created 3 years, 7 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:
31 // Handled by SharedWorkerMessageFilter. 32 // Handled by SharedWorkerMessageFilter.
32 case ViewHostMsg_DocumentDetached::ID: 33 case ViewHostMsg_DocumentDetached::ID:
33 // Allow cross-process JavaScript calls. 34 // Allow cross-process JavaScript calls.
34 case ViewHostMsg_RouteCloseEvent::ID: 35 case ViewHostMsg_RouteCloseEvent::ID:
35 // Send page scale factor reset notification upon cross-process navigations. 36 // Send page scale factor reset notification upon cross-process navigations.
36 case ViewHostMsg_PageScaleFactorChanged::ID: 37 case ViewHostMsg_PageScaleFactorChanged::ID:
37 return true; 38 return true;
38 default: 39 default:
39 break; 40 break;
40 } 41 }
(...skipping 26 matching lines...) Expand all
67 case AccessibilityHostMsg_Events::ID: 68 case AccessibilityHostMsg_Events::ID:
68 return true; 69 return true;
69 default: 70 default:
70 break; 71 break;
71 } 72 }
72 73
73 return false; 74 return false;
74 } 75 }
75 76
76 } // namespace content 77 } // 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