Chromium Code Reviews| Index: chrome/browser/media_galleries/fileapi/picasa_finder.h |
| diff --git a/chrome/browser/media_galleries/fileapi/picasa_finder.h b/chrome/browser/media_galleries/fileapi/picasa_finder.h |
| index 8b30597a04557c1db2b76882b960cab6c02a8400..c784ffcca5599df855a835a9e14e88088171267b 100644 |
| --- a/chrome/browser/media_galleries/fileapi/picasa_finder.h |
| +++ b/chrome/browser/media_galleries/fileapi/picasa_finder.h |
| @@ -8,6 +8,7 @@ |
| #include <string> |
| #include "base/callback.h" |
| +#include "base/files/file_path.h" |
| namespace picasa { |
| @@ -15,12 +16,14 @@ namespace PicasaFinder { |
| typedef base::Callback<void(const std::string&)> DeviceIDCallback; |
| +base::FilePath GetPicasaDatabasePath(); |
|
vandebo (ex-Chrome)
2013/09/17 21:18:06
This method feels a bit out of place: no comments,
tommycli
2013/09/18 15:25:37
Done.
|
| + |
| // Bounces to FILE thread to find Picasa database. If the platform supports |
| // Picasa and a Picasa database is found, |callback| will be invoked on the |
| // calling thread. Otherwise, |callback| is not invoked. |
| void FindPicasaDatabase(const DeviceIDCallback& callback); |
| -} |
| +} // namespace PicasaFinder |
| } // namespace picasa |