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

Side by Side Diff: content/renderer/browser_plugin/browser_plugin_manager_impl.cc

Issue 11824040: Enables compositing support for webview. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 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/renderer/browser_plugin/browser_plugin_manager_impl.h" 5 #include "content/renderer/browser_plugin/browser_plugin_manager_impl.h"
6 6
7 #include "content/common/browser_plugin_messages.h" 7 #include "content/common/browser_plugin_messages.h"
8 #include "content/renderer/browser_plugin/browser_plugin.h" 8 #include "content/renderer/browser_plugin/browser_plugin.h"
9 #include "content/renderer/render_thread_impl.h" 9 #include "content/renderer/render_thread_impl.h"
10 #include "ui/gfx/point.h" 10 #include "ui/gfx/point.h"
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 case BrowserPluginMsg_GuestResponsive::ID: 94 case BrowserPluginMsg_GuestResponsive::ID:
95 case BrowserPluginMsg_GuestUnresponsive::ID: 95 case BrowserPluginMsg_GuestUnresponsive::ID:
96 case BrowserPluginMsg_LoadAbort::ID: 96 case BrowserPluginMsg_LoadAbort::ID:
97 case BrowserPluginMsg_LoadCommit::ID: 97 case BrowserPluginMsg_LoadCommit::ID:
98 case BrowserPluginMsg_LoadRedirect::ID: 98 case BrowserPluginMsg_LoadRedirect::ID:
99 case BrowserPluginMsg_LoadStart::ID: 99 case BrowserPluginMsg_LoadStart::ID:
100 case BrowserPluginMsg_LoadStop::ID: 100 case BrowserPluginMsg_LoadStop::ID:
101 case BrowserPluginMsg_SetCursor::ID: 101 case BrowserPluginMsg_SetCursor::ID:
102 case BrowserPluginMsg_ShouldAcceptTouchEvents::ID: 102 case BrowserPluginMsg_ShouldAcceptTouchEvents::ID:
103 case BrowserPluginMsg_UpdateRect::ID: 103 case BrowserPluginMsg_UpdateRect::ID:
104 case BrowserPluginMsg_BuffersSwapped::ID:
104 return true; 105 return true;
105 default: 106 default:
106 break; 107 break;
107 } 108 }
108 return false; 109 return false;
109 } 110 }
110 111
111 } // namespace content 112 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698