summaryrefslogtreecommitdiff
path: root/Source/WebCore/page/PlugInClient.h
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2016-05-24 08:28:08 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2016-05-24 08:28:08 +0000
commita4e969f4965059196ca948db781e52f7cfebf19e (patch)
tree6ca352808c8fdc52006a0f33f6ae3c593b23867d /Source/WebCore/page/PlugInClient.h
parent41386e9cb918eed93b3f13648cbef387e371e451 (diff)
downloadWebKitGtk-tarball-a4e969f4965059196ca948db781e52f7cfebf19e.tar.gz
webkitgtk-2.12.3webkitgtk-2.12.3
Diffstat (limited to 'Source/WebCore/page/PlugInClient.h')
-rw-r--r--Source/WebCore/page/PlugInClient.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/WebCore/page/PlugInClient.h b/Source/WebCore/page/PlugInClient.h
index 6582c4efe..928b95caa 100644
--- a/Source/WebCore/page/PlugInClient.h
+++ b/Source/WebCore/page/PlugInClient.h
@@ -26,6 +26,7 @@
#ifndef PlugInClient_h
#define PlugInClient_h
+#include "SessionID.h"
#include <wtf/Forward.h>
namespace WebCore {
@@ -34,7 +35,7 @@ class PlugInClient {
public:
virtual void pageDestroyed() = 0;
virtual bool shouldAutoStartFromOrigin(const String& pageOrigin, const String& pluginOrigin, const String& mimeType) = 0;
- virtual void didStartFromOrigin(const String& pageOrigin, const String& pluginOrigin, const String& mimeType) = 0;
+ virtual void didStartFromOrigin(const String& pageOrigin, const String& pluginOrigin, const String& mimeType, SessionID) = 0;
protected:
virtual ~PlugInClient() { }