Chromium Code Reviews| 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..ce1a958bbb9191b5f0b0407d6db28cc243c069e1 |
| --- /dev/null |
| +++ b/content/browser/indexed_db/indexed_db_observer.cc |
| @@ -0,0 +1,20 @@ |
| +// Copyright (c) 2013 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" |
| + |
| +#include <stddef.h> |
| +#include <utility> |
| + |
| +#include "base/bind.h" |
|
Marijn Kruisselbrink
2016/06/24 00:48:09
You're not using anything from bind.h (or from mos
palakj1
2016/06/27 20:19:22
Cleaned it up.
|
| +#include "base/logging.h" |
| + |
| +namespace content { |
| + |
| +IndexedDBObserver::IndexedDBObserver(int64_t observer_id) |
| + : observer_id_(observer_id) {} |
| + |
| +IndexedDBObserver::~IndexedDBObserver() {} |
| + |
| +} // namespace content |