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

Unified Diff: content/browser/indexed_db/indexed_db_observer.cc

Issue 2062203004: IDBObserver: Lifetime Management: Adding Observer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Observer moved to connection Created 4 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 side-by-side diff with in-line comments
Download patch
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"
+#include "base/logging.h"
+
+namespace content {
+
+IndexedDBObserver::IndexedDBObserver(int64_t observer_id)
+ : observer_id_(observer_id) {}
+
+IndexedDBObserver::~IndexedDBObserver() {}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698