| 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
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b40f265fb1a1a4fefae54ab0937eb149d9d4b917
|
| --- /dev/null
|
| +++ b/content/browser/indexed_db/indexed_db_observer.cc
|
| @@ -0,0 +1,31 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "content/browser/indexed_db/indexed_db_observer.h"
|
| +
|
| +namespace content {
|
| +
|
| +IndexedDBObserver::Options::Options(bool include_transaction,
|
| + bool no_records,
|
| + bool values,
|
| + unsigned short types)
|
| + : include_transaction(include_transaction),
|
| + no_records(no_records),
|
| + values(values),
|
| + operation_types(types) {}
|
| +
|
| +IndexedDBObserver::Options::Options(const Options&) = default;
|
| +
|
| +IndexedDBObserver::Options::~Options() {}
|
| +
|
| +IndexedDBObserver::IndexedDBObserver(int32_t observer_id,
|
| + std::set<int64_t> object_store_ids,
|
| + Options options)
|
| + : id_(observer_id),
|
| + object_store_ids_(object_store_ids),
|
| + options_(options) {}
|
| +
|
| +IndexedDBObserver::~IndexedDBObserver() {}
|
| +
|
| +} // namespace content
|
|
|