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

Unified Diff: content/child/indexed_db/proxy_webidbfactory_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
Index: content/child/indexed_db/proxy_webidbfactory_impl.h
diff --git a/content/child/indexed_db/proxy_webidbfactory_impl.h b/content/child/indexed_db/proxy_webidbfactory_impl.h
index 9b7852d3ace9c74f1ceed5afa3e749a0228946dd..696a8e10afd35336346a93ea04f5541f9905a1af 100644
--- a/content/child/indexed_db/proxy_webidbfactory_impl.h
+++ b/content/child/indexed_db/proxy_webidbfactory_impl.h
@@ -11,33 +11,33 @@
#include "third_party/WebKit/public/platform/WebIDBFactory.h"
#include "third_party/WebKit/public/platform/WebVector.h"
-namespace WebKit {
+namespace blink {
class WebString;
}
namespace content {
class ThreadSafeSender;
-class RendererWebIDBFactoryImpl : public WebKit::WebIDBFactory {
+class RendererWebIDBFactoryImpl : public blink::WebIDBFactory {
public:
explicit RendererWebIDBFactoryImpl(ThreadSafeSender* thread_safe_sender);
virtual ~RendererWebIDBFactoryImpl();
// See WebIDBFactory.h for documentation on these functions.
virtual void getDatabaseNames(
- WebKit::WebIDBCallbacks* callbacks,
- const WebKit::WebString& database_identifier);
+ blink::WebIDBCallbacks* callbacks,
+ const blink::WebString& database_identifier);
virtual void open(
- const WebKit::WebString& name,
+ const blink::WebString& name,
long long version,
long long transaction_id,
- WebKit::WebIDBCallbacks* callbacks,
- WebKit::WebIDBDatabaseCallbacks* databaseCallbacks,
- const WebKit::WebString& database_identifier);
+ blink::WebIDBCallbacks* callbacks,
+ blink::WebIDBDatabaseCallbacks* databaseCallbacks,
+ const blink::WebString& database_identifier);
virtual void deleteDatabase(
- const WebKit::WebString& name,
- WebKit::WebIDBCallbacks* callbacks,
- const WebKit::WebString& database_identifier);
+ const blink::WebString& name,
+ blink::WebIDBCallbacks* callbacks,
+ const blink::WebString& database_identifier);
private:
scoped_refptr<ThreadSafeSender> thread_safe_sender_;
« no previous file with comments | « content/child/indexed_db/proxy_webidbdatabase_impl.cc ('k') | content/child/indexed_db/proxy_webidbfactory_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698