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

Side by Side Diff: components/leveldb_proto/leveldb_database.h

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn Created 4 years, 12 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef COMPONENTS_LEVELDB_PROTO_LEVELDB_DATABASE_H_ 5 #ifndef COMPONENTS_LEVELDB_PROTO_LEVELDB_DATABASE_H_
6 #define COMPONENTS_LEVELDB_PROTO_LEVELDB_DATABASE_H_ 6 #define COMPONENTS_LEVELDB_PROTO_LEVELDB_DATABASE_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/files/file_path.h" 11 #include "base/files/file_path.h"
12 #include "base/macros.h"
12 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
13 #include "base/strings/string_split.h" 14 #include "base/strings/string_split.h"
14 #include "base/threading/thread_collision_warner.h" 15 #include "base/threading/thread_collision_warner.h"
15 16
16 namespace base { 17 namespace base {
17 class HistogramBase; 18 class HistogramBase;
18 } // namespace base 19 } // namespace base
19 20
20 namespace leveldb { 21 namespace leveldb {
21 class DB; 22 class DB;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 scoped_ptr<leveldb::Env> env_; 55 scoped_ptr<leveldb::Env> env_;
55 scoped_ptr<leveldb::DB> db_; 56 scoped_ptr<leveldb::DB> db_;
56 base::HistogramBase* open_histogram_; 57 base::HistogramBase* open_histogram_;
57 58
58 DISALLOW_COPY_AND_ASSIGN(LevelDB); 59 DISALLOW_COPY_AND_ASSIGN(LevelDB);
59 }; 60 };
60 61
61 } // namespace leveldb_proto 62 } // namespace leveldb_proto
62 63
63 #endif // COMPONENTS_LEVELDB_PROTO_LEVELDB_DATABASE_H_ 64 #endif // COMPONENTS_LEVELDB_PROTO_LEVELDB_DATABASE_H_
OLDNEW
« no previous file with comments | « components/language_usage_metrics/language_usage_metrics.h ('k') | components/leveldb_proto/proto_database_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698