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

Unified Diff: ppapi/proxy/ppb_instance_proxy.h

Issue 23444004: Add GetPluginRefererURL to PPB_URLUtil_Dev interface to get the 'Referer' HTTP header value that wa… (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 4 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/ppb_instance_proxy.h
===================================================================
--- ppapi/proxy/ppb_instance_proxy.h (revision 219784)
+++ ppapi/proxy/ppb_instance_proxy.h (working copy)
@@ -114,6 +114,9 @@
virtual PP_Var GetPluginInstanceURL(
PP_Instance instance,
PP_URLComponents_Dev* components) OVERRIDE;
+ virtual PP_Var GetPluginRefererURL(
+ PP_Instance instance,
+ PP_URLComponents_Dev* components) OVERRIDE;
virtual void NeedKey(PP_Instance instance,
PP_Var key_system,
PP_Var session_id,
@@ -218,6 +221,8 @@
PP_Bool* result);
void OnHostMsgGetPluginInstanceURL(PP_Instance instance,
SerializedVarReturnValue result);
+ void OnHostMsgGetPluginRefererURL(PP_Instance instance,
+ SerializedVarReturnValue result);
virtual void OnHostMsgNeedKey(PP_Instance instance,
SerializedVarReceiveInput key_system,
SerializedVarReceiveInput session_id,

Powered by Google App Engine
This is Rietveld 408576698