| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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_COMMON_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_ | 5 #ifndef CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_ |
| 6 #define CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_ | 6 #define CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "third_party/WebKit/Source/Platform/chromium/public/WebIDBDatabase.h" | 9 #include "third_party/WebKit/public/platform/WebIDBDatabase.h" |
| 10 | 10 |
| 11 namespace WebKit { | 11 namespace WebKit { |
| 12 class WebIDBCallbacks; | 12 class WebIDBCallbacks; |
| 13 class WebIDBDatabaseCallbacks; | 13 class WebIDBDatabaseCallbacks; |
| 14 class WebString; | 14 class WebString; |
| 15 } | 15 } |
| 16 | 16 |
| 17 namespace content { | 17 namespace content { |
| 18 | 18 |
| 19 class RendererWebIDBDatabaseImpl : public WebKit::WebIDBDatabase { | 19 class RendererWebIDBDatabaseImpl : public WebKit::WebIDBDatabase { |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 virtual void commit(long long transaction_id); | 94 virtual void commit(long long transaction_id); |
| 95 | 95 |
| 96 private: | 96 private: |
| 97 int32 ipc_database_id_; | 97 int32 ipc_database_id_; |
| 98 int32 ipc_database_callbacks_id_; | 98 int32 ipc_database_callbacks_id_; |
| 99 }; | 99 }; |
| 100 | 100 |
| 101 } // namespace content | 101 } // namespace content |
| 102 | 102 |
| 103 #endif // CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_ | 103 #endif // CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_ |
| OLD | NEW |