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

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

Issue 198223002: Added IndexedDBPendingConnection to group up a bunch of parameters that get (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge out Created 6 years, 9 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "content/browser/indexed_db/indexed_db_pending_connection.h"
6
7 namespace content {
8
9 IndexedDBPendingConnection::IndexedDBPendingConnection(
10 scoped_refptr<IndexedDBCallbacks> callbacks_in,
11 scoped_refptr<IndexedDBDatabaseCallbacks> database_callbacks_in,
12 int child_process_id_in,
13 int64 transaction_id_in,
14 int64 version_in)
15 : callbacks(callbacks_in),
16 database_callbacks(database_callbacks_in),
17 child_process_id(child_process_id_in),
18 transaction_id(transaction_id_in),
19 version(version_in) {}
20
21 IndexedDBPendingConnection::~IndexedDBPendingConnection() {}
22
23 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/indexed_db/indexed_db_pending_connection.h ('k') | content/browser/indexed_db/indexed_db_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698