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

Side by Side Diff: content/browser/indexed_db/mock_indexed_db_open_request_observer.cc

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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/browser/indexed_db/mock_indexed_db_open_request_observer.h"
6
7 namespace content {
8
9 MockIndexedDBOpenRequestObserver::MockIndexedDBOpenRequestObserver() {}
10
11 MockIndexedDBOpenRequestObserver::~MockIndexedDBOpenRequestObserver() {}
12
13 void MockIndexedDBOpenRequestObserver::OnBlocked(int64_t old_version) {
14 blocked_called_ = true;
15 }
16
17 void MockIndexedDBOpenRequestObserver::OnUpgradeNeeded(
18 int64_t old_version,
19 IndexedDBConnection* connection,
20 const content::IndexedDBDataLossInfo& data_loss_info,
21 const IndexedDBDatabaseMetadata& index_metadata) {}
22
23 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/indexed_db/mock_indexed_db_open_request_observer.h ('k') | content/browser/indexed_db/typemaps.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698