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

Side by Side Diff: chrome/browser/chromeos/extensions/file_manager/private_api_util.cc

Issue 339323002: Implement snapshotting for non-Drive non-local file systems. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Just for filerefs. Created 6 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
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/chromeos/extensions/file_manager/private_api_util.h" 5 #include "chrome/browser/chromeos/extensions/file_manager/private_api_util.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
10 #include "base/message_loop/message_loop.h" 10 #include "base/message_loop/message_loop.h"
11 #include "chrome/browser/chromeos/drive/drive.pb.h" 11 #include "chrome/browser/chromeos/drive/drive.pb.h"
12 #include "chrome/browser/chromeos/drive/drive_integration_service.h" 12 #include "chrome/browser/chromeos/drive/drive_integration_service.h"
13 #include "chrome/browser/chromeos/drive/file_errors.h" 13 #include "chrome/browser/chromeos/drive/file_errors.h"
14 #include "chrome/browser/chromeos/drive/file_system_interface.h" 14 #include "chrome/browser/chromeos/drive/file_system_interface.h"
15 #include "chrome/browser/chromeos/drive/file_system_util.h" 15 #include "chrome/browser/chromeos/drive/file_system_util.h"
16 #include "chrome/browser/chromeos/file_manager/app_id.h" 16 #include "chrome/browser/chromeos/file_manager/app_id.h"
17 #include "chrome/browser/chromeos/file_manager/fileapi_util.h" 17 #include "chrome/browser/chromeos/file_manager/fileapi_util.h"
18 #include "chrome/browser/chromeos/file_manager/filesystem_api_util.h" 18 #include "chrome/browser/chromeos/file_manager/filesystem_api_util.h"
19 #include "chrome/browser/chromeos/file_manager/path_util.h" 19 #include "chrome/browser/chromeos/file_manager/path_util.h"
20 #include "chrome/browser/chromeos/file_manager/snapshot_manager.h"
20 #include "chrome/browser/chromeos/file_manager/volume_manager.h" 21 #include "chrome/browser/chromeos/file_manager/volume_manager.h"
21 #include "chrome/browser/chromeos/fileapi/file_system_backend.h" 22 #include "chrome/browser/chromeos/fileapi/file_system_backend.h"
22 #include "chrome/browser/profiles/profile.h" 23 #include "chrome/browser/profiles/profile.h"
23 #include "chrome/common/extensions/api/file_browser_private.h" 24 #include "chrome/common/extensions/api/file_browser_private.h"
24 #include "content/public/browser/child_process_security_policy.h" 25 #include "content/public/browser/child_process_security_policy.h"
25 #include "ui/shell_dialogs/selected_file_info.h" 26 #include "ui/shell_dialogs/selected_file_info.h"
26 #include "webkit/browser/fileapi/file_system_context.h" 27 #include "webkit/browser/fileapi/file_system_context.h"
27 #include "webkit/browser/fileapi/file_system_url.h" 28 #include "webkit/browser/fileapi/file_system_url.h"
28 29
29 namespace file_browser_private = extensions::api::file_browser_private; 30 namespace file_browser_private = extensions::api::file_browser_private;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 if (!file_system) { 66 if (!file_system) {
66 DLOG(ERROR) << "Drive file selected while disabled: " << path.value(); 67 DLOG(ERROR) << "Drive file selected while disabled: " << path.value();
67 callback.Run(base::FilePath()); 68 callback.Run(base::FilePath());
68 return; 69 return;
69 } 70 }
70 file_system->GetFile(drive::util::ExtractDrivePath(path), 71 file_system->GetFile(drive::util::ExtractDrivePath(path),
71 base::Bind(&OnDriveGetFile, path, callback)); 72 base::Bind(&OnDriveGetFile, path, callback));
72 return; 73 return;
73 } 74 }
74 75
75 // TODO(kinaba) crbug.com/383207 implement this. 76 VolumeManager::Get(profile)->snapshot_manager()->CreateManagedSnapshot(
76 NOTREACHED(); 77 path, callback);
77 callback.Run(base::FilePath());
78 } 78 }
79 79
80 // Gets a resolved local file path of a non native |path| for file saving. 80 // Gets a resolved local file path of a non native |path| for file saving.
81 void GetFileNativeLocalPathForSaving(Profile* profile, 81 void GetFileNativeLocalPathForSaving(Profile* profile,
82 const base::FilePath& path, 82 const base::FilePath& path,
83 const LocalPathCallback& callback) { 83 const LocalPathCallback& callback) {
84 if (drive::util::IsUnderDriveMountPoint(path)) { 84 if (drive::util::IsUnderDriveMountPoint(path)) {
85 drive::FileSystemInterface* file_system = 85 drive::FileSystemInterface* file_system =
86 drive::util::GetFileSystemByProfile(profile); 86 drive::util::GetFileSystemByProfile(profile);
87 if (!file_system) { 87 if (!file_system) {
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 327
328 drive::EventLogger* GetLogger(Profile* profile) { 328 drive::EventLogger* GetLogger(Profile* profile) {
329 drive::DriveIntegrationService* service = 329 drive::DriveIntegrationService* service =
330 drive::DriveIntegrationServiceFactory::FindForProfileRegardlessOfStates( 330 drive::DriveIntegrationServiceFactory::FindForProfileRegardlessOfStates(
331 profile); 331 profile);
332 return service ? service->event_logger() : NULL; 332 return service ? service->event_logger() : NULL;
333 } 333 }
334 334
335 } // namespace util 335 } // namespace util
336 } // namespace file_manager 336 } // namespace file_manager
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698