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

Side by Side Diff: chrome/browser/sync_file_system/drive_backend_v1/remote_change_handler.cc

Issue 23787003: [SyncFS] Move SyncFS V1 files from drive_backend to drive_backend_v1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: move back metadata_db_migration_util* Created 7 years, 3 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 | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698