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

Side by Side Diff: content/browser/indexed_db/indexed_db_callbacks.h

Issue 312093005: IndexedDB: Sprinkle DISALLOW_COPY_AND_ASSIGN where appropriate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing private: Created 6 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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698