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

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

Issue 16325022: move content/common_child to content/child (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 6 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: content/common_child/indexed_db/proxy_webidbfactory_impl.h
diff --git a/content/common_child/indexed_db/proxy_webidbfactory_impl.h b/content/common_child/indexed_db/proxy_webidbfactory_impl.h
deleted file mode 100644
index 089f58c577dce28238e23a80ba6be2578c1d4bb6..0000000000000000000000000000000000000000
--- a/content/common_child/indexed_db/proxy_webidbfactory_impl.h
+++ /dev/null
@@ -1,46 +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.
-
-#ifndef CONTENT_COMMON_CHILD_INDEXED_DB_PROXY_WEBIDBFACTORY_IMPL_H_
-#define CONTENT_COMMON_CHILD_INDEXED_DB_PROXY_WEBIDBFACTORY_IMPL_H_
-
-#include "third_party/WebKit/public/platform/WebIDBCallbacks.h"
-#include "third_party/WebKit/public/platform/WebIDBDatabaseCallbacks.h"
-#include "third_party/WebKit/public/platform/WebIDBFactory.h"
-#include "third_party/WebKit/public/platform/WebVector.h"
-
-namespace WebKit {
-class WebString;
-}
-
-namespace content {
-
-class RendererWebIDBFactoryImpl : public WebKit::WebIDBFactory {
- public:
- RendererWebIDBFactoryImpl();
- virtual ~RendererWebIDBFactoryImpl();
-
- // See WebIDBFactory.h for documentation on these functions.
- virtual void getDatabaseNames(
- WebKit::WebIDBCallbacks* callbacks,
- const WebKit::WebString& database_identifier,
- const WebKit::WebString& data_dir);
- virtual void open(
- const WebKit::WebString& name,
- long long version,
- long long transaction_id,
- WebKit::WebIDBCallbacks* callbacks,
- WebKit::WebIDBDatabaseCallbacks* databaseCallbacks,
- const WebKit::WebString& database_identifier,
- const WebKit::WebString& data_dir);
- virtual void deleteDatabase(
- const WebKit::WebString& name,
- WebKit::WebIDBCallbacks* callbacks,
- const WebKit::WebString& database_identifier,
- const WebKit::WebString& data_dir);
-};
-
-} // namespace content
-
-#endif // CONTENT_COMMON_CHILD_INDEXED_DB_PROXY_WEBIDBFACTORY_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698