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

Unified Diff: content/common_child/indexed_db/proxy_webidbfactory_impl.cc

Issue 16325022: move content/common_child to content/child (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 7 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/common_child/indexed_db/proxy_webidbfactory_impl.h ('k') | content/common_child/np_channel_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common_child/indexed_db/proxy_webidbfactory_impl.cc
diff --git a/content/common_child/indexed_db/proxy_webidbfactory_impl.cc b/content/common_child/indexed_db/proxy_webidbfactory_impl.cc
deleted file mode 100644
index 1cfeb42a7e0c8a31c02d4050ebda680330b69353..0000000000000000000000000000000000000000
--- a/content/common_child/indexed_db/proxy_webidbfactory_impl.cc
+++ /dev/null
@@ -1,64 +0,0 @@
-// Copyright (c) 2012 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.
-
-#include "content/common_child/indexed_db/proxy_webidbfactory_impl.h"
-
-#include "content/common/child_thread.h"
-#include "content/common_child/indexed_db/indexed_db_dispatcher.h"
-#include "third_party/WebKit/public/platform/WebString.h"
-
-using WebKit::WebIDBCallbacks;
-using WebKit::WebIDBDatabase;
-using WebKit::WebIDBDatabaseCallbacks;
-using WebKit::WebString;
-
-namespace content {
-
-RendererWebIDBFactoryImpl::RendererWebIDBFactoryImpl() {
-}
-
-RendererWebIDBFactoryImpl::~RendererWebIDBFactoryImpl() {
-}
-
-void RendererWebIDBFactoryImpl::getDatabaseNames(
- WebIDBCallbacks* callbacks,
- const WebString& database_identifier,
- const WebString& data_dir_unused) {
- IndexedDBDispatcher* dispatcher =
- IndexedDBDispatcher::ThreadSpecificInstance();
- dispatcher->RequestIDBFactoryGetDatabaseNames(
- callbacks, database_identifier);
-}
-
-void RendererWebIDBFactoryImpl::open(
- const WebString& name,
- long long version,
- long long transaction_id,
- WebIDBCallbacks* callbacks,
- WebIDBDatabaseCallbacks* database_callbacks,
- const WebString& database_identifier,
- const WebString& data_dir) {
- // Don't send the data_dir. We know what we want on the Browser side of
- // things.
- IndexedDBDispatcher* dispatcher =
- IndexedDBDispatcher::ThreadSpecificInstance();
- dispatcher->RequestIDBFactoryOpen(
- name, version, transaction_id, callbacks, database_callbacks,
- database_identifier);
-}
-
-void RendererWebIDBFactoryImpl::deleteDatabase(
- const WebString& name,
- WebIDBCallbacks* callbacks,
- const WebString& database_identifier,
- const WebString& data_dir) {
- // Don't send the data_dir. We know what we want on the Browser side of
- // things.
- IndexedDBDispatcher* dispatcher =
- IndexedDBDispatcher::ThreadSpecificInstance();
- dispatcher->RequestIDBFactoryDeleteDatabase(
- name, callbacks, database_identifier);
-}
-
-} // namespace content
« no previous file with comments | « content/common_child/indexed_db/proxy_webidbfactory_impl.h ('k') | content/common_child/np_channel_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698