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

Unified Diff: Source/platform/ContentDecryptionModuleResult.h

Issue 467193002: Cleanup namespace usage in Source/core/platform/[A-Z]*.h (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
« no previous file with comments | « Source/platform/AsyncFileSystemCallbacks.h ('k') | Source/platform/Cookie.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/ContentDecryptionModuleResult.h
diff --git a/Source/platform/ContentDecryptionModuleResult.h b/Source/platform/ContentDecryptionModuleResult.h
index 3f824b810984e746fc5f1f180690ad0c715e484c..6a9f9f4208c88754ee627ff008e28bdec9fccd3c 100644
--- a/Source/platform/ContentDecryptionModuleResult.h
+++ b/Source/platform/ContentDecryptionModuleResult.h
@@ -10,10 +10,8 @@
#include "public/platform/WebContentDecryptionModuleResult.h"
namespace blink {
-class WebString;
-}
-namespace blink {
+class WebString;
// Used to notify completion of a CDM operation.
class ContentDecryptionModuleResult : public GarbageCollectedFinalized<ContentDecryptionModuleResult> {
@@ -21,12 +19,12 @@ public:
virtual ~ContentDecryptionModuleResult() { }
virtual void complete() = 0;
- virtual void completeWithSession(blink::WebContentDecryptionModuleResult::SessionStatus) = 0;
- virtual void completeWithError(blink::WebContentDecryptionModuleException, unsigned long systemCode, const blink::WebString&) = 0;
+ virtual void completeWithSession(WebContentDecryptionModuleResult::SessionStatus) = 0;
+ virtual void completeWithError(WebContentDecryptionModuleException, unsigned long systemCode, const WebString&) = 0;
- blink::WebContentDecryptionModuleResult result()
+ WebContentDecryptionModuleResult result()
{
- return blink::WebContentDecryptionModuleResult(this);
+ return WebContentDecryptionModuleResult(this);
}
virtual void trace(Visitor*) { }
« no previous file with comments | « Source/platform/AsyncFileSystemCallbacks.h ('k') | Source/platform/Cookie.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698