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

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: Fixed build error on mac and win, nits 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_UpdatedName::ID: 103 case BrowserPluginMsg_UpdatedName::ID:
104 case BrowserPluginMsg_UpdateRect::ID: 104 case BrowserPluginMsg_UpdateRect::ID:
105 case BrowserPluginMsg_BuffersSwapped::ID:
105 return true; 106 return true;
106 default: 107 default:
107 break; 108 break;
108 } 109 }
109 return false; 110 return false;
110 } 111 }
111 112
112 } // namespace content 113 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/browser_plugin/browser_plugin_compositing_helper.cc ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698