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

Unified Diff: Source/platform/drm/ContentDecryptionModuleSession.h

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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: Source/platform/drm/ContentDecryptionModuleSession.h
diff --git a/Source/platform/drm/ContentDecryptionModuleSession.h b/Source/platform/drm/ContentDecryptionModuleSession.h
index ce8a7e824266aa22f29e3dc2b9294289589d40b2..ef58745ab67e209642806d420102fb4eb3dd73e7 100644
--- a/Source/platform/drm/ContentDecryptionModuleSession.h
+++ b/Source/platform/drm/ContentDecryptionModuleSession.h
@@ -37,7 +37,7 @@
#include "wtf/PassOwnPtr.h"
#include "wtf/text/WTFString.h"
-namespace WebKit {
+namespace blink {
class WebContentDecryptionModule;
}
@@ -57,12 +57,12 @@ public:
virtual void keyMessage(const unsigned char* message, size_t messageLength, const KURL& destinationURL) = 0;
};
-class PLATFORM_EXPORT ContentDecryptionModuleSession : private WebKit::WebContentDecryptionModuleSession::Client {
+class PLATFORM_EXPORT ContentDecryptionModuleSession : private blink::WebContentDecryptionModuleSession::Client {
WTF_MAKE_NONCOPYABLE(ContentDecryptionModuleSession);
public:
static PassOwnPtr<ContentDecryptionModuleSession> create(ContentDecryptionModuleSessionClient*);
- ContentDecryptionModuleSession(WebKit::WebContentDecryptionModule*, ContentDecryptionModuleSessionClient*);
+ ContentDecryptionModuleSession(blink::WebContentDecryptionModule*, ContentDecryptionModuleSessionClient*);
~ContentDecryptionModuleSession();
String sessionId() const;
@@ -71,12 +71,12 @@ public:
void close();
private:
- // WebKit::WebContentDecryptionModuleSession::Client
+ // blink::WebContentDecryptionModuleSession::Client
virtual void keyAdded() OVERRIDE;
virtual void keyError(MediaKeyErrorCode, unsigned long systemCode) OVERRIDE;
- virtual void keyMessage(const unsigned char* message, size_t messageLength, const WebKit::WebURL& destinationURL) OVERRIDE;
+ virtual void keyMessage(const unsigned char* message, size_t messageLength, const blink::WebURL& destinationURL) OVERRIDE;
- OwnPtr<WebKit::WebContentDecryptionModuleSession> m_session;
+ OwnPtr<blink::WebContentDecryptionModuleSession> m_session;
ContentDecryptionModuleSessionClient* m_client;
};
« no previous file with comments | « Source/platform/drm/ContentDecryptionModule.cpp ('k') | Source/platform/drm/ContentDecryptionModuleSession.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698