| 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_BROWSER_INDEXED_DB_INDEXED_DB_CALLBACKS_H_ | 5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_CALLBACKS_H_ |
| 6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_CALLBACKS_H_ | 6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_CALLBACKS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 | 125 |
| 126 // IndexedDBDatabase callbacks ------------------------ | 126 // IndexedDBDatabase callbacks ------------------------ |
| 127 int64 host_transaction_id_; | 127 int64 host_transaction_id_; |
| 128 GURL origin_url_; | 128 GURL origin_url_; |
| 129 int32 ipc_database_id_; | 129 int32 ipc_database_id_; |
| 130 int32 ipc_database_callbacks_id_; | 130 int32 ipc_database_callbacks_id_; |
| 131 | 131 |
| 132 // Stored in OnDataLoss, merged with OnUpgradeNeeded response. | 132 // Stored in OnDataLoss, merged with OnUpgradeNeeded response. |
| 133 blink::WebIDBDataLoss data_loss_; | 133 blink::WebIDBDataLoss data_loss_; |
| 134 std::string data_loss_message_; | 134 std::string data_loss_message_; |
| 135 |
| 136 DISALLOW_COPY_AND_ASSIGN(IndexedDBCallbacks); |
| 135 }; | 137 }; |
| 136 | 138 |
| 137 } // namespace content | 139 } // namespace content |
| 138 | 140 |
| 139 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_CALLBACKS_H_ | 141 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_CALLBACKS_H_ |
| OLD | NEW |