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

Side by Side Diff: content/common/leveldb_wrapper.mojom

Issue 1832813002: Add mojom module suffix in .mojom files in content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Tom's comment Created 4 years, 8 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
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 module content; 5 module content.mojom;
6 6
7 import "components/leveldb/public/interfaces/leveldb.mojom"; 7 import "components/leveldb/public/interfaces/leveldb.mojom";
8 8
9 // Gives information about changes to a LevelDB database. 9 // Gives information about changes to a LevelDB database.
10 // The reason this is a parameter to DeleteAll and GetAll below, instead of 10 // The reason this is a parameter to DeleteAll and GetAll below, instead of
11 // being specified when opening a LevelDBWrapper, is to avoid the client getting 11 // being specified when opening a LevelDBWrapper, is to avoid the client getting
12 // callbacks for changes that have already been applied to its database that 12 // callbacks for changes that have already been applied to its database that
13 // it's fetching via GetAll or it's clearing via DeleteAll. 13 // it's fetching via GetAll or it's clearing via DeleteAll.
14 // In the methods below, |source| is a user-defined string which was passed to 14 // In the methods below, |source| is a user-defined string which was passed to
15 // the various LevelDBWrapper methods. 15 // the various LevelDBWrapper methods.
(...skipping 28 matching lines...) Expand all
44 => (leveldb.DatabaseError status); 44 => (leveldb.DatabaseError status);
45 45
46 // Returns the value of the |key|. 46 // Returns the value of the |key|.
47 Get(array<uint8> key) => (leveldb.DatabaseError status, array<uint8> value); 47 Get(array<uint8> key) => (leveldb.DatabaseError status, array<uint8> value);
48 48
49 // Only used with small databases. Returns all key/value pairs. 49 // Only used with small databases. Returns all key/value pairs.
50 [Sync] 50 [Sync]
51 GetAll(LevelDBObserver observer) 51 GetAll(LevelDBObserver observer)
52 => (leveldb.DatabaseError status, array<KeyValue> data); 52 => (leveldb.DatabaseError status, array<KeyValue> data);
53 }; 53 };
OLDNEW
« no previous file with comments | « content/child/permissions/permission_dispatcher.cc ('k') | content/common/permission_service.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698