OLD | NEW |
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/media_galleries/fileapi/itunes/itunes_file_util.h" | 5 #include "chrome/browser/media_galleries/fileapi/itunes/itunes_file_util.h" |
6 | 6 |
7 #include "webkit/browser/fileapi/file_system_file_util.h" | 7 #include "webkit/browser/fileapi/file_system_file_util.h" |
8 #include "webkit/browser/fileapi/file_system_operation_context.h" | 8 #include "webkit/browser/fileapi/file_system_operation_context.h" |
9 #include "webkit/browser/fileapi/file_system_url.h" | 9 #include "webkit/browser/fileapi/file_system_url.h" |
10 #include "webkit/fileapi/file_system_util.h" | 10 #include "webkit/common/fileapi/file_system_util.h" |
11 | 11 |
12 namespace itunes { | 12 namespace itunes { |
13 | 13 |
14 ItunesFileUtil::ItunesFileUtil() {} | 14 ItunesFileUtil::ItunesFileUtil() {} |
15 | 15 |
16 ItunesFileUtil::~ItunesFileUtil() {} | 16 ItunesFileUtil::~ItunesFileUtil() {} |
17 | 17 |
18 base::PlatformFileError ItunesFileUtil::GetFileInfo( | 18 base::PlatformFileError ItunesFileUtil::GetFileInfo( |
19 fileapi::FileSystemOperationContext* context, | 19 fileapi::FileSystemOperationContext* context, |
20 const fileapi::FileSystemURL& url, | 20 const fileapi::FileSystemURL& url, |
(...skipping 17 matching lines...) Expand all Loading... |
38 const fileapi::FileSystemURL& url, | 38 const fileapi::FileSystemURL& url, |
39 base::FilePath* local_file_path) { | 39 base::FilePath* local_file_path) { |
40 DCHECK(local_file_path); | 40 DCHECK(local_file_path); |
41 DCHECK(url.is_valid()); | 41 DCHECK(url.is_valid()); |
42 | 42 |
43 NOTREACHED(); | 43 NOTREACHED(); |
44 return base::PLATFORM_FILE_ERROR_INVALID_OPERATION; | 44 return base::PLATFORM_FILE_ERROR_INVALID_OPERATION; |
45 } | 45 } |
46 | 46 |
47 } // namespace itunes | 47 } // namespace itunes |
OLD | NEW |