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

Side by Side Diff: chrome/browser/sync_file_system/drive_backend/leveldb_wrapper.h

Issue 1549003002: Switch to standard integer types in base/memory/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_LEVELDB_WRAPPER_H_ 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_LEVELDB_WRAPPER_H_
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_LEVELDB_WRAPPER_H_ 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_LEVELDB_WRAPPER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
11 #include "base/basictypes.h"
11 #include "base/macros.h" 12 #include "base/macros.h"
12 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
13 #include "third_party/leveldatabase/src/include/leveldb/slice.h" 14 #include "third_party/leveldatabase/src/include/leveldb/slice.h"
14 15
15 namespace leveldb { 16 namespace leveldb {
16 class DB; 17 class DB;
17 class Iterator; 18 class Iterator;
18 class Slice; 19 class Slice;
19 class Status; 20 class Status;
20 class WriteBatch; 21 class WriteBatch;
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 int64 num_puts_; 108 int64 num_puts_;
108 int64 num_deletes_; 109 int64 num_deletes_;
109 110
110 DISALLOW_COPY_AND_ASSIGN(LevelDBWrapper); 111 DISALLOW_COPY_AND_ASSIGN(LevelDBWrapper);
111 }; 112 };
112 113
113 } // namespace drive_backend 114 } // namespace drive_backend
114 } // namespace sync_file_system 115 } // namespace sync_file_system
115 116
116 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_LEVELDB_WRAPPER_H_ 117 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_LEVELDB_WRAPPER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698