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

Unified Diff: public/platform/WebContentDecryptionModuleSession.h

Issue 26975004: Move ContentDecryptionModule* to platform/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix pragma syntax Created 7 years, 2 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
« no previous file with comments | « public/platform/WebContentDecryptionModule.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebContentDecryptionModuleSession.h
diff --git a/public/platform/WebContentDecryptionModuleSession.h b/public/platform/WebContentDecryptionModuleSession.h
index 127d02c25198f4bf99c9ddbe49e765a8d06a5f02..8e9bc209cecfd8e2747cb7463251d08fd2a28ac6 100644
--- a/public/platform/WebContentDecryptionModuleSession.h
+++ b/public/platform/WebContentDecryptionModuleSession.h
@@ -31,12 +31,14 @@
#ifndef WebContentDecryptionModuleSession_h
#define WebContentDecryptionModuleSession_h
+#include "WebCommon.h"
+
namespace WebKit {
class WebString;
class WebURL;
-class WebContentDecryptionModuleSession {
+class BLINK_PLATFORM_EXPORT WebContentDecryptionModuleSession {
public:
class Client {
abarth-chromium 2013/10/31 18:42:50 It's complaining that you haven't put a BLINK_PLAT
public:
@@ -50,10 +52,10 @@ public:
virtual void keyMessage(const unsigned char* message, size_t messageLength, const WebKit::WebURL& destinationURL) = 0;
protected:
- virtual ~Client() { }
+ virtual ~Client();
};
- virtual ~WebContentDecryptionModuleSession() { }
+ virtual ~WebContentDecryptionModuleSession();
virtual WebString sessionId() const = 0;
virtual void generateKeyRequest(const WebString& mimeType, const unsigned char* initData, size_t initDataLength) = 0;
« no previous file with comments | « public/platform/WebContentDecryptionModule.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698