Index: ppapi/proxy/plugin_proxy_delegate.h |
diff --git a/ppapi/proxy/plugin_proxy_delegate.h b/ppapi/proxy/plugin_proxy_delegate.h |
index 82b540e7f94c7181bed05ee4ffc9e2661c5de322..c5fbdfb2e93eef89d9e774492d8676ce5dd3d1d0 100644 |
--- a/ppapi/proxy/plugin_proxy_delegate.h |
+++ b/ppapi/proxy/plugin_proxy_delegate.h |
@@ -7,6 +7,8 @@ |
#include <string> |
+class GURL; |
+ |
namespace ppapi { |
namespace proxy { |
@@ -24,6 +26,9 @@ class PPAPI_PROXY_EXPORT PluginProxyDelegate { |
// Performs Windows-specific font caching in the browser for the given |
// LOGFONTW. Does nothing on non-Windows platforms. |
virtual void PreCacheFont(const void* logfontw) = 0; |
+ |
+ // Sets the active url which is reported by breakpad. |
+ virtual void SetActiveURL(const GURL& url) = 0; |
brettw
2012/06/26 23:46:46
What's the reason for using GURL here? I'm not sur
raymes
2012/06/27 16:35:55
Done.
|
}; |
} // namespace proxy |