OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "chrome/browser/sync_file_system/remote_change_handler.h" | 5 #include "chrome/browser/sync_file_system/remote_change_handler.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "webkit/fileapi/file_system_util.h" | 8 #include "webkit/common/fileapi/file_system_util.h" |
9 | 9 |
10 namespace sync_file_system { | 10 namespace sync_file_system { |
11 | 11 |
12 RemoteChangeHandler::ChangeQueueItem::ChangeQueueItem() | 12 RemoteChangeHandler::ChangeQueueItem::ChangeQueueItem() |
13 : changestamp(0), sync_type(REMOTE_SYNC_TYPE_INCREMENTAL) {} | 13 : changestamp(0), sync_type(REMOTE_SYNC_TYPE_INCREMENTAL) {} |
14 | 14 |
15 RemoteChangeHandler::ChangeQueueItem::ChangeQueueItem( | 15 RemoteChangeHandler::ChangeQueueItem::ChangeQueueItem( |
16 int64 changestamp, | 16 int64 changestamp, |
17 RemoteSyncType sync_type, | 17 RemoteSyncType sync_type, |
18 const fileapi::FileSystemURL& url) | 18 const fileapi::FileSystemURL& url) |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 | 155 |
156 RemoteChangeHandler::ChangeMapItem::ChangeMapItem( | 156 RemoteChangeHandler::ChangeMapItem::ChangeMapItem( |
157 const RemoteChange& remote_change, | 157 const RemoteChange& remote_change, |
158 PendingChangeQueue::iterator position_in_queue) | 158 PendingChangeQueue::iterator position_in_queue) |
159 : remote_change(remote_change), | 159 : remote_change(remote_change), |
160 position_in_queue(position_in_queue) {} | 160 position_in_queue(position_in_queue) {} |
161 | 161 |
162 RemoteChangeHandler::ChangeMapItem::~ChangeMapItem() {} | 162 RemoteChangeHandler::ChangeMapItem::~ChangeMapItem() {} |
163 | 163 |
164 } // namespace sync_file_system | 164 } // namespace sync_file_system |
OLD | NEW |