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

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: Final architechture Created 4 years, 5 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/public/gpu/content_gpu_client.cc b/content/browser/indexed_db/indexed_db_observer.cc
similarity index 52%
copy from content/public/gpu/content_gpu_client.cc
copy to content/browser/indexed_db/indexed_db_observer.cc
index c2a8eacc3c51547a6b99d409e6c43c316feadb6b..56d53eb77b4e331f4a13623830fd495f54edaedd 100644
--- a/content/public/gpu/content_gpu_client.cc
+++ b/content/browser/indexed_db/indexed_db_observer.cc
@@ -2,12 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "content/public/gpu/content_gpu_client.h"
+#include "content/browser/indexed_db/indexed_db_observer.h"
namespace content {
-gpu::SyncPointManager* ContentGpuClient::GetSyncPointManager() {
- return nullptr;
-}
+IndexedDBObserver::IndexedDBObserver(int32_t observer_id)
+ : observer_id_(observer_id) {}
+
+IndexedDBObserver::~IndexedDBObserver() {}
} // namespace content
« no previous file with comments | « content/browser/indexed_db/indexed_db_observer.h ('k') | content/browser/indexed_db/indexed_db_transaction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698