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

Unified Diff: Source/platform/CryptoResult.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/Crypto.h ('k') | Source/platform/EventTracer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/CryptoResult.h
diff --git a/Source/platform/CryptoResult.h b/Source/platform/CryptoResult.h
index 5ff24a2ae062cc3a6f889573f76126936398df18..0f00c74624b2226eac4f93ea3eebaa64dfce8c8a 100644
--- a/Source/platform/CryptoResult.h
+++ b/Source/platform/CryptoResult.h
@@ -41,17 +41,17 @@ class CryptoResult : public ThreadSafeRefCounted<CryptoResult> {
public:
virtual ~CryptoResult() { }
- virtual void completeWithError(blink::WebCryptoErrorType, const blink::WebString&) = 0;
- virtual void completeWithBuffer(const blink::WebArrayBuffer&) = 0;
+ virtual void completeWithError(WebCryptoErrorType, const WebString&) = 0;
+ virtual void completeWithBuffer(const WebArrayBuffer&) = 0;
virtual void completeWithJson(const char* utf8Data, unsigned length) = 0;
virtual void completeWithBoolean(bool) = 0;
- virtual void completeWithKey(const blink::WebCryptoKey&) = 0;
- virtual void completeWithKeyPair(const blink::WebCryptoKey& publicKey, const blink::WebCryptoKey& privateKey) = 0;
+ virtual void completeWithKey(const WebCryptoKey&) = 0;
+ virtual void completeWithKeyPair(const WebCryptoKey& publicKey, const WebCryptoKey& privateKey) = 0;
virtual bool cancelled() const = 0;
- blink::WebCryptoResult result()
+ WebCryptoResult result()
{
- return blink::WebCryptoResult(this);
+ return WebCryptoResult(this);
}
};
« no previous file with comments | « Source/platform/Crypto.h ('k') | Source/platform/EventTracer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698