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

Unified Diff: content/child/webblobregistry_impl.h

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 | « content/child/web_database_observer_impl.cc ('k') | content/child/webblobregistry_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/webblobregistry_impl.h
diff --git a/content/child/webblobregistry_impl.h b/content/child/webblobregistry_impl.h
index 8a04abfa69f9b300d431a3986239d9cd1013b455..6588a5290735268ed998c96b09545e1a94f84ef4 100644
--- a/content/child/webblobregistry_impl.h
+++ b/content/child/webblobregistry_impl.h
@@ -9,7 +9,7 @@
#include "third_party/WebKit/public/platform/WebBlobRegistry.h"
#include "webkit/common/blob/blob_data.h"
-namespace WebKit {
+namespace blink {
class WebBlobData;
class WebString;
class WebThreadSafeData;
@@ -19,33 +19,33 @@ class WebURL;
namespace content {
class ThreadSafeSender;
-class WebBlobRegistryImpl : public WebKit::WebBlobRegistry {
+class WebBlobRegistryImpl : public blink::WebBlobRegistry {
public:
explicit WebBlobRegistryImpl(ThreadSafeSender* sender);
virtual ~WebBlobRegistryImpl();
- virtual void registerBlobData(const WebKit::WebString& uuid,
- const WebKit::WebBlobData& data);
- virtual void addBlobDataRef(const WebKit::WebString& uuid);
- virtual void removeBlobDataRef(const WebKit::WebString& uuid);
- virtual void registerPublicBlobURL(const WebKit::WebURL&,
- const WebKit::WebString& uuid);
- virtual void revokePublicBlobURL(const WebKit::WebURL&);
+ virtual void registerBlobData(const blink::WebString& uuid,
+ const blink::WebBlobData& data);
+ virtual void addBlobDataRef(const blink::WebString& uuid);
+ virtual void removeBlobDataRef(const blink::WebString& uuid);
+ virtual void registerPublicBlobURL(const blink::WebURL&,
+ const blink::WebString& uuid);
+ virtual void revokePublicBlobURL(const blink::WebURL&);
// Additional support for Streams.
- virtual void registerStreamURL(const WebKit::WebURL& url,
- const WebKit::WebString& content_type);
- virtual void registerStreamURL(const WebKit::WebURL& url,
- const WebKit::WebURL& src_url);
- virtual void addDataToStream(const WebKit::WebURL& url,
- WebKit::WebThreadSafeData& data);
- virtual void finalizeStream(const WebKit::WebURL& url);
- virtual void abortStream(const WebKit::WebURL& url);
- virtual void unregisterStreamURL(const WebKit::WebURL& url);
+ virtual void registerStreamURL(const blink::WebURL& url,
+ const blink::WebString& content_type);
+ virtual void registerStreamURL(const blink::WebURL& url,
+ const blink::WebURL& src_url);
+ virtual void addDataToStream(const blink::WebURL& url,
+ blink::WebThreadSafeData& data);
+ virtual void finalizeStream(const blink::WebURL& url);
+ virtual void abortStream(const blink::WebURL& url);
+ virtual void unregisterStreamURL(const blink::WebURL& url);
private:
void SendDataForBlob(const std::string& uuid_str,
- const WebKit::WebThreadSafeData& data);
+ const blink::WebThreadSafeData& data);
scoped_refptr<ThreadSafeSender> sender_;
};
« no previous file with comments | « content/child/web_database_observer_impl.cc ('k') | content/child/webblobregistry_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698