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

Unified Diff: Source/core/platform/CryptoResult.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
« no previous file with comments | « Source/core/page/scrolling/ScrollingCoordinator.cpp ('k') | Source/core/platform/DragData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/platform/CryptoResult.h
diff --git a/Source/core/platform/CryptoResult.h b/Source/core/platform/CryptoResult.h
index c62768cb7ad0f8e31836a9b66125f22faf3d7ecb..45aaef5945b57f7568d085f1099b99a87050a7ad 100644
--- a/Source/core/platform/CryptoResult.h
+++ b/Source/core/platform/CryptoResult.h
@@ -42,14 +42,14 @@ public:
virtual ~CryptoResult() { }
virtual void completeWithError() = 0;
- virtual void completeWithBuffer(const WebKit::WebArrayBuffer&) = 0;
+ virtual void completeWithBuffer(const blink::WebArrayBuffer&) = 0;
virtual void completeWithBoolean(bool) = 0;
- virtual void completeWithKey(const WebKit::WebCryptoKey&) = 0;
- virtual void completeWithKeyPair(const WebKit::WebCryptoKey& publicKey, const WebKit::WebCryptoKey& privateKey) = 0;
+ virtual void completeWithKey(const blink::WebCryptoKey&) = 0;
+ virtual void completeWithKeyPair(const blink::WebCryptoKey& publicKey, const blink::WebCryptoKey& privateKey) = 0;
- WebKit::WebCryptoResult result()
+ blink::WebCryptoResult result()
{
- return WebKit::WebCryptoResult(this);
+ return blink::WebCryptoResult(this);
}
};
« no previous file with comments | « Source/core/page/scrolling/ScrollingCoordinator.cpp ('k') | Source/core/platform/DragData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698