 Chromium Code Reviews
 Chromium Code Reviews Issue 26975004:
  Move ContentDecryptionModule* to platform/  (Closed) 
  Base URL: svn://svn.chromium.org/blink/trunk
    
  
    Issue 26975004:
  Move ContentDecryptionModule* to platform/  (Closed) 
  Base URL: svn://svn.chromium.org/blink/trunk| 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; |