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

Unified Diff: content/child/indexed_db/webidbfactory_impl.h

Issue 1963293002: Replacing Indexed DB Chromium IPC with Mojo Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Refactoring after Passing URLRequestContextGetter. Created 4 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 | « content/child/indexed_db/webidbdatabase_impl.cc ('k') | content/child/indexed_db/webidbfactory_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/indexed_db/webidbfactory_impl.h
diff --git a/content/child/indexed_db/webidbfactory_impl.h b/content/child/indexed_db/webidbfactory_impl.h
deleted file mode 100644
index 7e2fca92496dbc46154268aa1575e570c6c33d28..0000000000000000000000000000000000000000
--- a/content/child/indexed_db/webidbfactory_impl.h
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CONTENT_CHILD_INDEXED_DB_WEBIDBFACTORY_IMPL_H_
-#define CONTENT_CHILD_INDEXED_DB_WEBIDBFACTORY_IMPL_H_
-
-#include "base/memory/ref_counted.h"
-#include "third_party/WebKit/public/platform/WebVector.h"
-#include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBCallbacks.h"
-#include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBDatabaseCallbacks.h"
-#include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBFactory.h"
-
-namespace blink {
-class WebSecurityOrigin;
-class WebString;
-}
-
-namespace content {
-class ThreadSafeSender;
-
-class WebIDBFactoryImpl : public blink::WebIDBFactory {
- public:
- explicit WebIDBFactoryImpl(ThreadSafeSender* thread_safe_sender);
- ~WebIDBFactoryImpl() override;
-
- // See WebIDBFactory.h for documentation on these functions.
- void getDatabaseNames(blink::WebIDBCallbacks* callbacks,
- const blink::WebSecurityOrigin& origin) override;
- void open(const blink::WebString& name,
- long long version,
- long long transaction_id,
- blink::WebIDBCallbacks* callbacks,
- blink::WebIDBDatabaseCallbacks* databaseCallbacks,
- const blink::WebSecurityOrigin& origin) override;
- void deleteDatabase(const blink::WebString& name,
- blink::WebIDBCallbacks* callbacks,
- const blink::WebSecurityOrigin& origin) override;
-
- private:
- scoped_refptr<ThreadSafeSender> thread_safe_sender_;
-};
-
-} // namespace content
-
-#endif // CONTENT_CHILD_INDEXED_DB_WEBIDBFACTORY_IMPL_H_
« no previous file with comments | « content/child/indexed_db/webidbdatabase_impl.cc ('k') | content/child/indexed_db/webidbfactory_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698