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

Unified Diff: public/platform/WebCrypto.h

Issue 457353002: Cleanup namespace usage in public/platform/Web[A-M]*.h. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | « public/platform/WebCookieJar.h ('k') | public/platform/WebCursorInfo.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebCrypto.h
diff --git a/public/platform/WebCrypto.h b/public/platform/WebCrypto.h
index d76989b2f1727cad549e8a3ce8a3eca79aa57cba..21fffe07576b2f30731475156595de7516147315 100644
--- a/public/platform/WebCrypto.h
+++ b/public/platform/WebCrypto.h
@@ -38,14 +38,13 @@
#include "WebString.h"
#include "WebVector.h"
-namespace blink { class CryptoResult; }
-
#if INSIDE_BLINK
namespace WTF { template <typename T> class PassRefPtr; }
#endif
namespace blink {
+class CryptoResult;
class WebArrayBuffer;
class WebString;
@@ -100,14 +99,14 @@ public:
BLINK_PLATFORM_EXPORT bool cancelled() const;
#if INSIDE_BLINK
- BLINK_PLATFORM_EXPORT explicit WebCryptoResult(const WTF::PassRefPtr<blink::CryptoResult>&);
+ BLINK_PLATFORM_EXPORT explicit WebCryptoResult(const WTF::PassRefPtr<CryptoResult>&);
#endif
private:
BLINK_PLATFORM_EXPORT void reset();
BLINK_PLATFORM_EXPORT void assign(const WebCryptoResult&);
- WebPrivatePtr<blink::CryptoResult> m_impl;
+ WebPrivatePtr<CryptoResult> m_impl;
};
class WebCryptoDigestor {
« no previous file with comments | « public/platform/WebCookieJar.h ('k') | public/platform/WebCursorInfo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698