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

Side by Side Diff: chrome/browser/chromeos/gdata/drive_system_service.cc

Issue 10920091: Move Drive API files to google_apis directory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 (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/chromeos/gdata/drive_system_service.h" 5 #include "chrome/browser/chromeos/gdata/drive_system_service.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/bind_helpers.h" 8 #include "base/bind_helpers.h"
9 #include "chrome/browser/browser_process.h" 9 #include "chrome/browser/browser_process.h"
10 #include "chrome/browser/chromeos/gdata/drive_api_service.h"
11 #include "chrome/browser/chromeos/gdata/drive_download_observer.h" 10 #include "chrome/browser/chromeos/gdata/drive_download_observer.h"
12 #include "chrome/browser/chromeos/gdata/drive_file_system.h" 11 #include "chrome/browser/chromeos/gdata/drive_file_system.h"
13 #include "chrome/browser/chromeos/gdata/drive_file_system_proxy.h" 12 #include "chrome/browser/chromeos/gdata/drive_file_system_proxy.h"
14 #include "chrome/browser/chromeos/gdata/drive_webapps_registry.h" 13 #include "chrome/browser/chromeos/gdata/drive_webapps_registry.h"
15 #include "chrome/browser/chromeos/gdata/file_write_helper.h" 14 #include "chrome/browser/chromeos/gdata/file_write_helper.h"
16 #include "chrome/browser/chromeos/gdata/gdata_sync_client.h" 15 #include "chrome/browser/chromeos/gdata/gdata_sync_client.h"
17 #include "chrome/browser/chromeos/gdata/gdata_uploader.h" 16 #include "chrome/browser/chromeos/gdata/gdata_uploader.h"
18 #include "chrome/browser/chromeos/gdata/gdata_util.h" 17 #include "chrome/browser/chromeos/gdata/gdata_util.h"
19 #include "chrome/browser/chromeos/gdata/gdata_wapi_service.h" 18 #include "chrome/browser/chromeos/gdata/gdata_wapi_service.h"
20 #include "chrome/browser/download/download_service.h" 19 #include "chrome/browser/download/download_service.h"
21 #include "chrome/browser/download/download_service_factory.h" 20 #include "chrome/browser/download/download_service_factory.h"
21 #include "chrome/browser/google_api/drive_api_service.h"
22 #include "chrome/browser/profiles/profile.h" 22 #include "chrome/browser/profiles/profile.h"
23 #include "chrome/browser/profiles/profile_dependency_manager.h" 23 #include "chrome/browser/profiles/profile_dependency_manager.h"
24 #include "content/public/browser/browser_context.h" 24 #include "content/public/browser/browser_context.h"
25 #include "content/public/browser/browser_thread.h" 25 #include "content/public/browser/browser_thread.h"
26 #include "webkit/fileapi/file_system_context.h" 26 #include "webkit/fileapi/file_system_context.h"
27 #include "webkit/fileapi/file_system_mount_point_provider.h" 27 #include "webkit/fileapi/file_system_mount_point_provider.h"
28 28
29 using content::BrowserContext; 29 using content::BrowserContext;
30 using content::BrowserThread; 30 using content::BrowserThread;
31 31
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 g_test_cache_root ? FilePath(*g_test_cache_root) : 219 g_test_cache_root ? FilePath(*g_test_cache_root) :
220 DriveCache::GetCacheRootPath(profile); 220 DriveCache::GetCacheRootPath(profile);
221 delete g_test_cache_root; 221 delete g_test_cache_root;
222 g_test_cache_root = NULL; 222 g_test_cache_root = NULL;
223 223
224 service->Initialize(drive_service, cache_root); 224 service->Initialize(drive_service, cache_root);
225 return service; 225 return service;
226 } 226 }
227 227
228 } // namespace gdata 228 } // namespace gdata
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698