| Index: content/browser/indexed_db/indexed_db_dispatcher_host.h
|
| diff --git a/content/browser/indexed_db/indexed_db_dispatcher_host.h b/content/browser/indexed_db/indexed_db_dispatcher_host.h
|
| index 524c68eeb8029c3fb94755b1598a6ed85219f9dc..92f488c993581afa968e624043475405b595c2af 100644
|
| --- a/content/browser/indexed_db/indexed_db_dispatcher_host.h
|
| +++ b/content/browser/indexed_db/indexed_db_dispatcher_host.h
|
| @@ -38,6 +38,8 @@ struct IndexedDBHostMsg_DatabaseSetIndexKeys_Params;
|
| struct IndexedDBHostMsg_FactoryDeleteDatabase_Params;
|
| struct IndexedDBHostMsg_FactoryGetDatabaseNames_Params;
|
| struct IndexedDBHostMsg_FactoryOpen_Params;
|
| +struct IndexedDBObservation;
|
| +struct IndexedDBObserverChanges;
|
|
|
| namespace url {
|
| class Origin;
|
| @@ -51,6 +53,8 @@ class IndexedDBCursor;
|
| class IndexedDBKey;
|
| class IndexedDBKeyPath;
|
| class IndexedDBKeyRange;
|
| +class IndexedDBObservation;
|
| +class IndexedDBObserverChanges;
|
| struct IndexedDBDatabaseMetadata;
|
|
|
| // Handles all IndexedDB related messages from a particular renderer process.
|
| @@ -68,6 +72,10 @@ class IndexedDBDispatcherHost : public BrowserMessageFilter {
|
|
|
| static ::IndexedDBDatabaseMetadata ConvertMetadata(
|
| const content::IndexedDBDatabaseMetadata& metadata);
|
| + static ::IndexedDBObserverChanges ConvertObserverChanges(
|
| + content::IndexedDBObserverChanges* changes);
|
| + static ::IndexedDBObservation ConvertObservation(
|
| + std::unique_ptr<content::IndexedDBObservation> observation);
|
|
|
| // BrowserMessageFilter implementation.
|
| void OnChannelConnected(int32_t peer_pid) override;
|
|
|