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

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

Issue 15659013: Revert "Migrate the IndexedDB backend from Blink to Chromium" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013 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/indexed_db_metadata.h"
6
7 namespace content {
8
9 IndexedDBObjectStoreMetadata::IndexedDBObjectStoreMetadata(
10 const string16& name,
11 int64 id,
12 const IndexedDBKeyPath& key_path,
13 bool auto_increment,
14 int64 max_index_id)
15 : name(name),
16 id(id),
17 key_path(key_path),
18 auto_increment(auto_increment),
19 max_index_id(max_index_id) {}
20
21 IndexedDBObjectStoreMetadata::IndexedDBObjectStoreMetadata() {}
22 IndexedDBObjectStoreMetadata::~IndexedDBObjectStoreMetadata() {}
23
24 IndexedDBDatabaseMetadata::IndexedDBDatabaseMetadata()
25 : int_version(NO_INT_VERSION) {}
26 IndexedDBDatabaseMetadata::IndexedDBDatabaseMetadata(const string16& name,
27 int64 id,
28 const string16& version,
29 int64 int_version,
30 int64 max_object_store_id)
31 : name(name),
32 id(id),
33 version(version),
34 int_version(int_version),
35 max_object_store_id(max_object_store_id) {}
36
37 IndexedDBDatabaseMetadata::~IndexedDBDatabaseMetadata() {}
38
39 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/indexed_db/indexed_db_metadata.h ('k') | content/browser/indexed_db/indexed_db_quota_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698