| OLD | NEW |
| 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/extensions/file_browser_handler_api.h" | 5 #include "chrome/browser/chromeos/extensions/file_browser_handler_api.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/file_path.h" | 8 #include "base/file_path.h" |
| 9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 | 269 |
| 270 if (!gdata::util::IsUnderGDataMountPoint(full_path_)) { | 270 if (!gdata::util::IsUnderGDataMountPoint(full_path_)) { |
| 271 OnGotPermissionsToGrant(callback, virtual_path); | 271 OnGotPermissionsToGrant(callback, virtual_path); |
| 272 return; | 272 return; |
| 273 } | 273 } |
| 274 | 274 |
| 275 // For drive files, we also have to grant permissions for cache paths. | 275 // For drive files, we also have to grant permissions for cache paths. |
| 276 scoped_ptr<std::vector<FilePath> > gdata_paths(new std::vector<FilePath>()); | 276 scoped_ptr<std::vector<FilePath> > gdata_paths(new std::vector<FilePath>()); |
| 277 gdata_paths->push_back(virtual_path); | 277 gdata_paths->push_back(virtual_path); |
| 278 | 278 |
| 279 gdata::util::InsertGDataCachePathsPermissions( | 279 gdata::util::InsertDriveCachePathsPermissions( |
| 280 profile(), | 280 profile(), |
| 281 gdata_paths.Pass(), | 281 gdata_paths.Pass(), |
| 282 &permissions_to_grant_, | 282 &permissions_to_grant_, |
| 283 base::Bind(&FileHandlerSelectFileFunction::OnGotPermissionsToGrant, | 283 base::Bind(&FileHandlerSelectFileFunction::OnGotPermissionsToGrant, |
| 284 this, callback, virtual_path)); | 284 this, callback, virtual_path)); |
| 285 } | 285 } |
| 286 | 286 |
| 287 void FileHandlerSelectFileFunction::OnGotPermissionsToGrant( | 287 void FileHandlerSelectFileFunction::OnGotPermissionsToGrant( |
| 288 const GrantPermissionsCallback& callback, | 288 const GrantPermissionsCallback& callback, |
| 289 const FilePath& virtual_path) { | 289 const FilePath& virtual_path) { |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 if (result) { | 321 if (result) { |
| 322 result->set_function_for_test(this); | 322 result->set_function_for_test(this); |
| 323 return result; | 323 return result; |
| 324 } | 324 } |
| 325 return new FileSelectorImpl(this); | 325 return new FileSelectorImpl(this); |
| 326 } | 326 } |
| 327 | 327 |
| 328 FileSelector* FileHandlerSelectFileFunction::file_selector_for_test_ = NULL; | 328 FileSelector* FileHandlerSelectFileFunction::file_selector_for_test_ = NULL; |
| 329 | 329 |
| 330 bool FileHandlerSelectFileFunction::gesture_check_disabled_for_test_ = false; | 330 bool FileHandlerSelectFileFunction::gesture_check_disabled_for_test_ = false; |
| 331 | |
| OLD | NEW |