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

Unified Diff: content/browser/indexed_db/indexed_db_database_callbacks.h

Issue 1963293002: Replacing Indexed DB Chromium IPC with Mojo Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Refactoring after Passing URLRequestContextGetter. Created 4 years, 4 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_database_callbacks.h
diff --git a/content/browser/indexed_db/indexed_db_database_callbacks.h b/content/browser/indexed_db/indexed_db_database_callbacks.h
deleted file mode 100644
index 0ee97afccf61c7e16b59a7be917baff24148830a..0000000000000000000000000000000000000000
--- a/content/browser/indexed_db/indexed_db_database_callbacks.h
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright (c) 2012 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.
-
-#ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_CALLBACKS_H_
-#define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_CALLBACKS_H_
-
-#include <stdint.h>
-
-#include "base/macros.h"
-#include "base/memory/ref_counted.h"
-#include "content/common/content_export.h"
-
-namespace content {
-class IndexedDBDatabaseError;
-class IndexedDBDispatcherHost;
-class IndexedDBObserverChanges;
-
-class CONTENT_EXPORT IndexedDBDatabaseCallbacks
- : public base::RefCounted<IndexedDBDatabaseCallbacks> {
- public:
- IndexedDBDatabaseCallbacks(IndexedDBDispatcherHost* dispatcher_host,
- int ipc_thread_id,
- int ipc_database_callbacks_id);
-
- virtual void OnForcedClose();
- virtual void OnVersionChange(int64_t old_version, int64_t new_version);
-
- virtual void OnAbort(int64_t host_transaction_id,
- const IndexedDBDatabaseError& error);
- virtual void OnComplete(int64_t host_transaction_id);
- virtual void OnDatabaseChange(
- int32_t ipc_database_id,
- std::unique_ptr<IndexedDBObserverChanges> changes);
-
- protected:
- virtual ~IndexedDBDatabaseCallbacks();
-
- private:
- friend class base::RefCounted<IndexedDBDatabaseCallbacks>;
-
- scoped_refptr<IndexedDBDispatcherHost> dispatcher_host_;
- int ipc_thread_id_;
- int ipc_database_callbacks_id_;
-
- DISALLOW_COPY_AND_ASSIGN(IndexedDBDatabaseCallbacks);
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_CALLBACKS_H_
« no previous file with comments | « content/browser/indexed_db/indexed_db_database.cc ('k') | content/browser/indexed_db/indexed_db_database_callbacks.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698