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

Unified Diff: Source/modules/encryptedmedia/SimpleContentDecryptionModuleResult.h

Issue 466813003: Cleanup namespace usage in Source/core/modules/[battery/* to indexeddb/*] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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: Source/modules/encryptedmedia/SimpleContentDecryptionModuleResult.h
diff --git a/Source/modules/encryptedmedia/SimpleContentDecryptionModuleResult.h b/Source/modules/encryptedmedia/SimpleContentDecryptionModuleResult.h
index 49d4244483dd21465e0f95a3ec7cd8b479df1a0e..4ec868f422e0e58486d29e504a4483b018f5ec5d 100644
--- a/Source/modules/encryptedmedia/SimpleContentDecryptionModuleResult.h
+++ b/Source/modules/encryptedmedia/SimpleContentDecryptionModuleResult.h
@@ -10,16 +10,13 @@
#include "wtf/Forward.h"
namespace blink {
-class WebString;
-}
-
-namespace blink {
class ScriptPromise;
class ScriptPromiseResolver;
class ScriptState;
+class WebString;
-ExceptionCode WebCdmExceptionToExceptionCode(blink::WebContentDecryptionModuleException);
+ExceptionCode WebCdmExceptionToExceptionCode(WebContentDecryptionModuleException);
// This class wraps the promise resolver and is passed (indirectly) to Chromium
// to fullfill the promise. This implementation of complete() will resolve the
@@ -33,8 +30,8 @@ public:
// ContentDecryptionModuleResult implementation.
virtual void complete() OVERRIDE;
- virtual void completeWithSession(blink::WebContentDecryptionModuleResult::SessionStatus) OVERRIDE;
- virtual void completeWithError(blink::WebContentDecryptionModuleException, unsigned long systemCode, const blink::WebString&) OVERRIDE;
+ virtual void completeWithSession(WebContentDecryptionModuleResult::SessionStatus) OVERRIDE;
+ virtual void completeWithError(WebContentDecryptionModuleException, unsigned long systemCode, const WebString&) OVERRIDE;
// It is only valid to call this before completion.
ScriptPromise promise();
« no previous file with comments | « Source/modules/encryptedmedia/MediaKeysController.h ('k') | Source/modules/filesystem/FileSystemCallbacks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698