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

Side by Side Diff: components/drive/file_change.h

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « components/drive/file_cache_unittest.cc ('k') | components/drive/file_system.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_DRIVE_FILE_CHANGE_H_ 5 #ifndef COMPONENTS_DRIVE_FILE_CHANGE_H_
6 #define COMPONENTS_DRIVE_FILE_CHANGE_H_ 6 #define COMPONENTS_DRIVE_FILE_CHANGE_H_
7 7
8 #include <stddef.h>
9
8 #include <deque> 10 #include <deque>
9 #include <map> 11 #include <map>
10 #include <string> 12 #include <string>
11 13
12 #include "base/basictypes.h"
13 #include "base/files/file_path.h" 14 #include "base/files/file_path.h"
14 15
15 namespace drive { 16 namespace drive {
16 class ResourceEntry; 17 class ResourceEntry;
17 18
18 class FileChange { 19 class FileChange {
19 public: 20 public:
20 enum FileType { 21 enum FileType {
21 FILE_TYPE_NO_INFO, 22 FILE_TYPE_NO_INFO,
22 FILE_TYPE_FILE, 23 FILE_TYPE_FILE,
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 109
109 std::string DebugString() const; 110 std::string DebugString() const;
110 111
111 private: 112 private:
112 Map map_; 113 Map map_;
113 }; 114 };
114 115
115 } // namespace drive 116 } // namespace drive
116 117
117 #endif // COMPONENTS_DRIVE_FILE_CHANGE_H_ 118 #endif // COMPONENTS_DRIVE_FILE_CHANGE_H_
OLDNEW
« no previous file with comments | « components/drive/file_cache_unittest.cc ('k') | components/drive/file_system.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698