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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 const BrowserPluginMsg_LoadCommit_Params& params); | 44 const BrowserPluginMsg_LoadCommit_Params& params); |
45 void OnLoadStop(int instance_id); | 45 void OnLoadStop(int instance_id); |
46 void OnLoadAbort(int instance_id, | 46 void OnLoadAbort(int instance_id, |
47 const GURL& url, | 47 const GURL& url, |
48 bool is_top_level, | 48 bool is_top_level, |
49 const std::string& type); | 49 const std::string& type); |
50 void OnLoadRedirect(int instance_id, | 50 void OnLoadRedirect(int instance_id, |
51 const GURL& old_url, | 51 const GURL& old_url, |
52 const GURL& new_url, | 52 const GURL& new_url, |
53 bool is_top_level); | 53 bool is_top_level); |
| 54 void OnTitleChange(int instance_id, const string16& title); |
54 | 55 |
55 DISALLOW_COPY_AND_ASSIGN(BrowserPluginManagerImpl); | 56 DISALLOW_COPY_AND_ASSIGN(BrowserPluginManagerImpl); |
56 }; | 57 }; |
57 | 58 |
58 } // namespace content | 59 } // namespace content |
59 | 60 |
60 #endif // CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_ | 61 #endif // CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_ |
OLD | NEW |