OLD | NEW |
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 Loading... |
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 |
OLD | NEW |