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/drive_backend/remote_change_handler.h" | 5 #include "chrome/browser/sync_file_system/drive_backend_v1/remote_change_handler
.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "webkit/common/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) {} | 13 : changestamp(0) {} |
14 | 14 |
15 RemoteChangeHandler::ChangeQueueItem::ChangeQueueItem( | 15 RemoteChangeHandler::ChangeQueueItem::ChangeQueueItem( |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 | 148 |
149 RemoteChangeHandler::ChangeMapItem::ChangeMapItem( | 149 RemoteChangeHandler::ChangeMapItem::ChangeMapItem( |
150 const RemoteChange& remote_change, | 150 const RemoteChange& remote_change, |
151 PendingChangeQueue::iterator position_in_queue) | 151 PendingChangeQueue::iterator position_in_queue) |
152 : remote_change(remote_change), | 152 : remote_change(remote_change), |
153 position_in_queue(position_in_queue) {} | 153 position_in_queue(position_in_queue) {} |
154 | 154 |
155 RemoteChangeHandler::ChangeMapItem::~ChangeMapItem() {} | 155 RemoteChangeHandler::ChangeMapItem::~ChangeMapItem() {} |
156 | 156 |
157 } // namespace sync_file_system | 157 } // namespace sync_file_system |
OLD | NEW |