Index: content/public/browser/browser_ppapi_host.h |
diff --git a/content/public/browser/browser_ppapi_host.h b/content/public/browser/browser_ppapi_host.h |
index febd0ea78d16f6ccee79b27019ba406bb42d561c..888a21980bd04b7759d967f1f95c9d4f98d2eb69 100644 |
--- a/content/public/browser/browser_ppapi_host.h |
+++ b/content/public/browser/browser_ppapi_host.h |
@@ -10,6 +10,7 @@ |
#include "content/common/content_export.h" |
#include "content/public/browser/browser_thread.h" |
#include "content/public/browser/render_view_host.h" |
+#include "googleurl/src/gurl.h" |
#include "ppapi/c/pp_instance.h" |
namespace IPC { |
@@ -72,6 +73,10 @@ class CONTENT_EXPORT BrowserPpapiHost { |
virtual bool GetRenderViewIDsForInstance(PP_Instance instance, |
int* render_process_id, |
int* render_view_id) const = 0; |
+ |
+ // Get the Document/Plugin URLs for the given PP_Instance. |
+ virtual GURL GetDocumentURLForInstance(PP_Instance instance) = 0; |
+ virtual GURL GetPluginURLForInstance(PP_Instance instance) = 0; |
yzshen1
2012/12/06 19:59:46
I notice that the plugin url is not used. Is it us
raymes
2012/12/07 21:32:19
Yep this will be needed in the future for Flash Ge
|
}; |
} // namespace content |