| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |
| OLD | NEW |