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

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

Issue 15658004: Split FileAPI code for common|common_child|renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 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
« no previous file with comments | « chrome/browser/sync_file_system/drive_metadata_store.cc ('k') | chrome/renderer/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/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
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
OLDNEW
« no previous file with comments | « chrome/browser/sync_file_system/drive_metadata_store.cc ('k') | chrome/renderer/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698