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

Side by Side Diff: chrome/browser/sync_file_system/subtree_set.h

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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
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_SUBTREE_SET_H_ 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_SUBTREE_SET_H_
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_SUBTREE_SET_H_ 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_SUBTREE_SET_H_
7 7
8 #include <stddef.h>
9
8 #include "base/containers/hash_tables.h" 10 #include "base/containers/hash_tables.h"
9 #include "base/files/file_path.h" 11 #include "base/files/file_path.h"
10 12
11 namespace base { 13 namespace base {
12 class FilePath; 14 class FilePath;
13 } // namespace base 15 } // namespace base
14 16
15 namespace sync_file_system { 17 namespace sync_file_system {
16 18
17 // Stores disjoint subtrees of a directory tree. 19 // Stores disjoint subtrees of a directory tree.
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 typedef base::hash_map<StringType, Node> Subtrees; 51 typedef base::hash_map<StringType, Node> Subtrees;
50 52
51 // Contains the root of subtrees and all upward node to root. 53 // Contains the root of subtrees and all upward node to root.
52 // Each subtree root has |contained_as_subtree_root| flag true. 54 // Each subtree root has |contained_as_subtree_root| flag true.
53 Subtrees inclusive_ancestors_of_subtree_roots_; 55 Subtrees inclusive_ancestors_of_subtree_roots_;
54 }; 56 };
55 57
56 } // namespace sync_file_system 58 } // namespace sync_file_system
57 59
58 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_SUBTREE_SET_H_ 60 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_SUBTREE_SET_H_
OLDNEW
« no previous file with comments | « chrome/browser/sync_file_system/remote_file_sync_service.h ('k') | chrome/browser/sync_file_system/sync_event_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698