| Index: content/browser/indexed_db/indexed_db_observer.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_observer.cc b/content/browser/indexed_db/indexed_db_observer.cc
|
| index 56d53eb77b4e331f4a13623830fd495f54edaedd..32a252a1ef2ea373ca4708ab1deeb0f6deea62c4 100644
|
| --- a/content/browser/indexed_db/indexed_db_observer.cc
|
| +++ b/content/browser/indexed_db/indexed_db_observer.cc
|
| @@ -6,8 +6,16 @@
|
|
|
| namespace content {
|
|
|
| -IndexedDBObserver::IndexedDBObserver(int32_t observer_id)
|
| - : observer_id_(observer_id) {}
|
| +IndexedDBObserver::IndexedDBObserver(int32_t observer_id,
|
| + std::set<int64_t> object_store_ids,
|
| + bool include_transaction,
|
| + bool no_records,
|
| + bool values)
|
| + : id_(observer_id),
|
| + object_store_ids_(object_store_ids),
|
| + include_transaction_(include_transaction),
|
| + no_records_(no_records),
|
| + values_(values) {}
|
|
|
| IndexedDBObserver::~IndexedDBObserver() {}
|
|
|
|
|