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

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

Issue 15746017: Move webkit/blob to new locations. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 7 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 (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 #include "chrome/browser/sync_file_system/drive_file_sync_service.h" 5 #include "chrome/browser/sync_file_system/drive_file_sync_service.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 10
(...skipping 18 matching lines...) Expand all
29 #include "chrome/browser/sync_file_system/drive_metadata_store.h" 29 #include "chrome/browser/sync_file_system/drive_metadata_store.h"
30 #include "chrome/browser/sync_file_system/file_status_observer.h" 30 #include "chrome/browser/sync_file_system/file_status_observer.h"
31 #include "chrome/browser/sync_file_system/logger.h" 31 #include "chrome/browser/sync_file_system/logger.h"
32 #include "chrome/browser/sync_file_system/remote_change_handler.h" 32 #include "chrome/browser/sync_file_system/remote_change_handler.h"
33 #include "chrome/browser/sync_file_system/remote_change_processor.h" 33 #include "chrome/browser/sync_file_system/remote_change_processor.h"
34 #include "chrome/browser/sync_file_system/remote_sync_operation_resolver.h" 34 #include "chrome/browser/sync_file_system/remote_sync_operation_resolver.h"
35 #include "chrome/browser/sync_file_system/sync_file_system.pb.h" 35 #include "chrome/browser/sync_file_system/sync_file_system.pb.h"
36 #include "chrome/common/extensions/extension.h" 36 #include "chrome/common/extensions/extension.h"
37 #include "content/public/browser/browser_thread.h" 37 #include "content/public/browser/browser_thread.h"
38 #include "extensions/common/constants.h" 38 #include "extensions/common/constants.h"
39 #include "webkit/blob/scoped_file.h" 39 #include "webkit/common/blob/scoped_file.h"
40 #include "webkit/fileapi/file_system_url.h" 40 #include "webkit/fileapi/file_system_url.h"
41 #include "webkit/fileapi/file_system_util.h" 41 #include "webkit/fileapi/file_system_util.h"
42 #include "webkit/fileapi/syncable/sync_file_metadata.h" 42 #include "webkit/fileapi/syncable/sync_file_metadata.h"
43 #include "webkit/fileapi/syncable/sync_file_type.h" 43 #include "webkit/fileapi/syncable/sync_file_type.h"
44 #include "webkit/fileapi/syncable/syncable_file_system_util.h" 44 #include "webkit/fileapi/syncable/syncable_file_system_util.h"
45 45
46 using fileapi::FileSystemURL; 46 using fileapi::FileSystemURL;
47 47
48 namespace sync_file_system { 48 namespace sync_file_system {
49 49
(...skipping 1670 matching lines...) Expand 10 before | Expand all | Expand 10 after
1720 pending_batch_sync_origins_.insert(origin); 1720 pending_batch_sync_origins_.insert(origin);
1721 } 1721 }
1722 callback.Run(status, resource_id); 1722 callback.Run(status, resource_id);
1723 } 1723 }
1724 1724
1725 std::string DriveFileSyncService::sync_root_resource_id() { 1725 std::string DriveFileSyncService::sync_root_resource_id() {
1726 return metadata_store_->sync_root_directory(); 1726 return metadata_store_->sync_root_directory();
1727 } 1727 }
1728 1728
1729 } // namespace sync_file_system 1729 } // namespace sync_file_system
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698