| 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 #ifndef CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_ |
| 6 #define CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_ | 6 #define CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_ |
| 7 | 7 |
| 8 #include "content/renderer/browser_plugin/browser_plugin_manager.h" | 8 #include "content/renderer/browser_plugin/browser_plugin_manager.h" |
| 9 #include "googleurl/src/gurl.h" | 9 #include "googleurl/src/gurl.h" |
| 10 | 10 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 const std::string& type); | 54 const std::string& type); |
| 55 void OnLoadRedirect(int instance_id, | 55 void OnLoadRedirect(int instance_id, |
| 56 const GURL& old_url, | 56 const GURL& old_url, |
| 57 const GURL& new_url, | 57 const GURL& new_url, |
| 58 bool is_top_level); | 58 bool is_top_level); |
| 59 void OnSetCursor(int instance_id, | 59 void OnSetCursor(int instance_id, |
| 60 const WebCursor& cursor); | 60 const WebCursor& cursor); |
| 61 void OnPluginAtPositionRequest(int source_routing_id, | 61 void OnPluginAtPositionRequest(int source_routing_id, |
| 62 int request_id, | 62 int request_id, |
| 63 const gfx::Point& position); | 63 const gfx::Point& position); |
| 64 void OnRequestMediaAccess(int instance_id, int request_id); |
| 64 | 65 |
| 65 DISALLOW_COPY_AND_ASSIGN(BrowserPluginManagerImpl); | 66 DISALLOW_COPY_AND_ASSIGN(BrowserPluginManagerImpl); |
| 66 }; | 67 }; |
| 67 | 68 |
| 68 } // namespace content | 69 } // namespace content |
| 69 | 70 |
| 70 #endif // CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_ | 71 #endif // CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_ |
| OLD | NEW |