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

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

Issue 311263014: IndexedDB: Fix trivial cpplint.py errors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_PENDING_CONNECTION_H_ 5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_PENDING_CONNECTION_H_
6 #define CONTENT_BROWSER_INDEXED_DB_PENDING_CONNECTION_H_ 6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_PENDING_CONNECTION_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 "content/browser/indexed_db/indexed_db_callbacks.h" 10 #include "content/browser/indexed_db/indexed_db_callbacks.h"
11 #include "content/browser/indexed_db/indexed_db_database_callbacks.h" 11 #include "content/browser/indexed_db/indexed_db_database_callbacks.h"
12 #include "content/common/content_export.h" 12 #include "content/common/content_export.h"
13 13
14 namespace content { 14 namespace content {
15 15
16 class IndexedDBCallbacks; 16 class IndexedDBCallbacks;
17 class IndexedDBDatabaseCallbacks; 17 class IndexedDBDatabaseCallbacks;
18 18
19 struct CONTENT_EXPORT IndexedDBPendingConnection { 19 struct CONTENT_EXPORT IndexedDBPendingConnection {
20 IndexedDBPendingConnection( 20 IndexedDBPendingConnection(
21 scoped_refptr<IndexedDBCallbacks> callbacks_in, 21 scoped_refptr<IndexedDBCallbacks> callbacks_in,
22 scoped_refptr<IndexedDBDatabaseCallbacks> database_callbacks_in, 22 scoped_refptr<IndexedDBDatabaseCallbacks> database_callbacks_in,
23 int child_process_id_in, 23 int child_process_id_in,
24 int64 transaction_id_in, 24 int64 transaction_id_in,
25 int64 version_in); 25 int64 version_in);
26 ~IndexedDBPendingConnection(); 26 ~IndexedDBPendingConnection();
27 scoped_refptr<IndexedDBCallbacks> callbacks; 27 scoped_refptr<IndexedDBCallbacks> callbacks;
28 scoped_refptr<IndexedDBDatabaseCallbacks> database_callbacks; 28 scoped_refptr<IndexedDBDatabaseCallbacks> database_callbacks;
29 int child_process_id; 29 int child_process_id;
30 int64 transaction_id; 30 int64 transaction_id;
31 int64 version; 31 int64 version;
32 }; 32 };
33 33
34 } // namespace content 34 } // namespace content
35 35
36 #endif // CONTENT_BROWSER_INDEXED_DB_PENDING_CONNECTION_H_ 36 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_PENDING_CONNECTION_H_
OLDNEW
« no previous file with comments | « content/browser/indexed_db/indexed_db_metadata.h ('k') | content/browser/indexed_db/indexed_db_transaction.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698