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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_COMMON_CHILD_INDEXED_DB_PROXY_WEBIDBFACTORY_IMPL_H_
6 #define CONTENT_COMMON_CHILD_INDEXED_DB_PROXY_WEBIDBFACTORY_IMPL_H_
7
8 #include "third_party/WebKit/public/platform/WebIDBCallbacks.h"
9 #include "third_party/WebKit/public/platform/WebIDBDatabaseCallbacks.h"
10 #include "third_party/WebKit/public/platform/WebIDBFactory.h"
11 #include "third_party/WebKit/public/platform/WebVector.h"
12
13 namespace WebKit {
14 class WebString;
15 }
16
17 namespace content {
18
19 class RendererWebIDBFactoryImpl : public WebKit::WebIDBFactory {
20 public:
21 RendererWebIDBFactoryImpl();
22 virtual ~RendererWebIDBFactoryImpl();
23
24 // See WebIDBFactory.h for documentation on these functions.
25 virtual void getDatabaseNames(
26 WebKit::WebIDBCallbacks* callbacks,
27 const WebKit::WebString& database_identifier,
28 const WebKit::WebString& data_dir);
29 virtual void open(
30 const WebKit::WebString& name,
31 long long version,
32 long long transaction_id,
33 WebKit::WebIDBCallbacks* callbacks,
34 WebKit::WebIDBDatabaseCallbacks* databaseCallbacks,
35 const WebKit::WebString& database_identifier,
36 const WebKit::WebString& data_dir);
37 virtual void deleteDatabase(
38 const WebKit::WebString& name,
39 WebKit::WebIDBCallbacks* callbacks,
40 const WebKit::WebString& database_identifier,
41 const WebKit::WebString& data_dir);
42 };
43
44 } // namespace content
45
46 #endif // CONTENT_COMMON_CHILD_INDEXED_DB_PROXY_WEBIDBFACTORY_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698