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/picasa_finder.h" | 5 #include "chrome/browser/media_galleries/fileapi/picasa_finder.h" |
6 | 6 |
7 #include "base/base_paths.h" | 7 #include "base/base_paths.h" |
8 #include "base/bind.h" | 8 #include "base/bind.h" |
9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
(...skipping 16 matching lines...) Expand all Loading... |
27 if (!PathService::Get(base::DIR_LOCAL_APP_DATA, &path)) | 27 if (!PathService::Get(base::DIR_LOCAL_APP_DATA, &path)) |
28 return base::FilePath(); | 28 return base::FilePath(); |
29 #elif defined(OS_MACOSX) | 29 #elif defined(OS_MACOSX) |
30 // TODO(tommycli): Check Mac Preferences for alternative path. | 30 // TODO(tommycli): Check Mac Preferences for alternative path. |
31 if (!PathService::Get(base::DIR_APP_DATA, &path)) | 31 if (!PathService::Get(base::DIR_APP_DATA, &path)) |
32 return base::FilePath(); | 32 return base::FilePath(); |
33 #else | 33 #else |
34 return base::FilePath(); | 34 return base::FilePath(); |
35 #endif | 35 #endif |
36 | 36 |
37 path = path.AppendASCII("Google").AppendASCII("Picasa2") | 37 return path.AppendASCII("Google").AppendASCII("Picasa2").AppendASCII( |
38 .AppendASCII(kPicasaDatabaseDirName); | 38 kPicasaDatabaseDirName); |
39 | 39 |
40 // Verify actual existence | 40 // Verify actual existence |
41 if (!base::DirectoryExists(path)) | 41 if (!base::DirectoryExists(path)) |
42 path.clear(); | 42 path.clear(); |
43 | 43 |
44 return path; | 44 return path; |
45 } | 45 } |
46 | 46 |
47 void FinishOnOriginalThread(const PicasaFinder::DeviceIDCallback& callback, | 47 void FinishOnOriginalThread(const PicasaFinder::DeviceIDCallback& callback, |
48 const base::FilePath& database_path) { | 48 const base::FilePath& database_path) { |
49 if (!database_path.empty()) | 49 if (!database_path.empty()) |
50 callback.Run(StorageInfo::MakeDeviceId(StorageInfo::PICASA, | 50 callback.Run(StorageInfo::MakeDeviceId(StorageInfo::PICASA, |
51 database_path.AsUTF8Unsafe())); | 51 database_path.AsUTF8Unsafe())); |
52 } | 52 } |
53 | 53 |
54 } // namespace | 54 } // namespace |
55 | 55 |
56 void PicasaFinder::FindPicasaDatabase( | 56 namespace PicasaFinder { |
57 const PicasaFinder::DeviceIDCallback& callback) { | 57 |
| 58 void FindPicasaDatabase(const PicasaFinder::DeviceIDCallback& callback) { |
58 content::BrowserThread::PostTaskAndReplyWithResult( | 59 content::BrowserThread::PostTaskAndReplyWithResult( |
59 content::BrowserThread::FILE, | 60 content::BrowserThread::FILE, |
60 FROM_HERE, | 61 FROM_HERE, |
61 base::Bind(&FindPicasaDatabaseOnFileThread), | 62 base::Bind(&FindPicasaDatabaseOnFileThread), |
62 base::Bind(&FinishOnOriginalThread, callback)); | 63 base::Bind(&FinishOnOriginalThread, callback)); |
63 } | 64 } |
64 | 65 |
| 66 } // namespace PicasaFinder |
| 67 |
65 } // namespace picasa | 68 } // namespace picasa |
OLD | NEW |