OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_CHILD_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_ | 5 #ifndef CONTENT_CHILD_INDEXED_DB_WEBIDBDATABASE_IMPL_H_ |
6 #define CONTENT_CHILD_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_ | 6 #define CONTENT_CHILD_INDEXED_DB_WEBIDBDATABASE_IMPL_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "third_party/WebKit/public/platform/WebIDBCursor.h" | 10 #include "third_party/WebKit/public/platform/WebIDBCursor.h" |
11 #include "third_party/WebKit/public/platform/WebIDBDatabase.h" | 11 #include "third_party/WebKit/public/platform/WebIDBDatabase.h" |
12 | 12 |
13 namespace blink { | 13 namespace blink { |
14 class WebBlobInfo; | 14 class WebBlobInfo; |
15 class WebIDBCallbacks; | 15 class WebIDBCallbacks; |
16 class WebIDBDatabaseCallbacks; | 16 class WebIDBDatabaseCallbacks; |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 const blink::WebVector<blink::WebString>& uuids); | 109 const blink::WebVector<blink::WebString>& uuids); |
110 | 110 |
111 private: | 111 private: |
112 int32 ipc_database_id_; | 112 int32 ipc_database_id_; |
113 int32 ipc_database_callbacks_id_; | 113 int32 ipc_database_callbacks_id_; |
114 scoped_refptr<ThreadSafeSender> thread_safe_sender_; | 114 scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
115 }; | 115 }; |
116 | 116 |
117 } // namespace content | 117 } // namespace content |
118 | 118 |
119 #endif // CONTENT_CHILD_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_ | 119 #endif // CONTENT_CHILD_INDEXED_DB_WEBIDBDATABASE_IMPL_H_ |
OLD | NEW |