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

Side by Side Diff: chrome/browser/sync_file_system/remote_change_processor.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, 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 (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 CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_CHANGE_PROCESSOR_H_ 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_CHANGE_PROCESSOR_H_
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_CHANGE_PROCESSOR_H_ 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_CHANGE_PROCESSOR_H_
7 7
8 #include "base/basictypes.h"
9 #include "base/callback_forward.h" 8 #include "base/callback_forward.h"
9 #include "base/macros.h"
10 #include "chrome/browser/sync_file_system/sync_callbacks.h" 10 #include "chrome/browser/sync_file_system/sync_callbacks.h"
11 #include "chrome/browser/sync_file_system/sync_status_code.h" 11 #include "chrome/browser/sync_file_system/sync_status_code.h"
12 12
13 namespace base { 13 namespace base {
14 class FilePath; 14 class FilePath;
15 } 15 }
16 16
17 namespace storage { 17 namespace storage {
18 class FileSystemURL; 18 class FileSystemURL;
19 } 19 }
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 const FileChange& change, 81 const FileChange& change,
82 const SyncStatusCallback& callback) = 0; 82 const SyncStatusCallback& callback) = 0;
83 83
84 private: 84 private:
85 DISALLOW_COPY_AND_ASSIGN(RemoteChangeProcessor); 85 DISALLOW_COPY_AND_ASSIGN(RemoteChangeProcessor);
86 }; 86 };
87 87
88 } // namespace sync_file_system 88 } // namespace sync_file_system
89 89
90 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_CHANGE_PROCESSOR_H_ 90 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_CHANGE_PROCESSOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698