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

Unified Diff: Source/platform/exported/WebStorageQuotaCallbacks.cpp

Issue 458313005: Cleanup namespace usage from animation to exported in platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Cleanup namespace usage from animation to exported in platform/ 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/platform/exported/WebStorageQuotaCallbacks.cpp
diff --git a/Source/platform/exported/WebStorageQuotaCallbacks.cpp b/Source/platform/exported/WebStorageQuotaCallbacks.cpp
index a4ee8af1886d5237bb21acea9448b9e0857f70f9..c393b0034bd945b336a878bd0edc4e26b9fe1efb 100644
--- a/Source/platform/exported/WebStorageQuotaCallbacks.cpp
+++ b/Source/platform/exported/WebStorageQuotaCallbacks.cpp
@@ -16,19 +16,19 @@ namespace blink {
class WebStorageQuotaCallbacksPrivate : public RefCounted<WebStorageQuotaCallbacksPrivate> {
public:
- static PassRefPtr<WebStorageQuotaCallbacksPrivate> create(const PassOwnPtr<blink::StorageQuotaCallbacks>& callbacks)
+ static PassRefPtr<WebStorageQuotaCallbacksPrivate> create(const PassOwnPtr<StorageQuotaCallbacks>& callbacks)
{
return adoptRef(new WebStorageQuotaCallbacksPrivate(callbacks));
}
- blink::StorageQuotaCallbacks* callbacks() { return m_callbacks.get(); }
+ StorageQuotaCallbacks* callbacks() { return m_callbacks.get(); }
private:
- WebStorageQuotaCallbacksPrivate(const PassOwnPtr<blink::StorageQuotaCallbacks>& callbacks) : m_callbacks(callbacks) { }
- OwnPtr<blink::StorageQuotaCallbacks> m_callbacks;
+ WebStorageQuotaCallbacksPrivate(const PassOwnPtr<StorageQuotaCallbacks>& callbacks) : m_callbacks(callbacks) { }
+ OwnPtr<StorageQuotaCallbacks> m_callbacks;
};
-WebStorageQuotaCallbacks::WebStorageQuotaCallbacks(const PassOwnPtr<blink::StorageQuotaCallbacks>& callbacks)
+WebStorageQuotaCallbacks::WebStorageQuotaCallbacks(const PassOwnPtr<StorageQuotaCallbacks>& callbacks)
{
m_private = WebStorageQuotaCallbacksPrivate::create(callbacks);
}
« no previous file with comments | « Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp ('k') | Source/platform/exported/WebThreadSafeData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698