Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Unified Diff: ppapi/proxy/plugin_proxy_delegate.h

Issue 10681006: Add ppapi interface for setting crash data (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..9070ddcabd34d1cf802ade345e59048f00de65d0 100644
--- a/ppapi/proxy/plugin_proxy_delegate.h
+++ b/ppapi/proxy/plugin_proxy_delegate.h
@@ -7,6 +7,8 @@
#include <string>
+#include "googleurl/src/gurl.h"
+
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;
+
+ // Set the active url which is reported by breakpad.
yzshen1 2012/06/26 22:44:28 nit: - Set -> Sets - I think you can forward decla
raymes 2012/06/26 23:16:56 Done.
+ virtual void SetActiveURL(const GURL& url) = 0;
};
} // namespace proxy

Powered by Google App Engine
This is Rietveld 408576698