| 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 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_PICASA_FINDER_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_PICASA_FINDER_H_ |
| 6 #define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_PICASA_FINDER_H_ | 6 #define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_PICASA_FINDER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "build/build_config.h" |
| 12 | 13 |
| 13 #if defined(OS_MACOSX) | 14 #if defined(OS_MACOSX) |
| 14 | 15 |
| 15 class MacPreferences; | 16 class MacPreferences; |
| 16 #if defined(__OBJC__) | 17 #if defined(__OBJC__) |
| 17 @class NSString; | 18 @class NSString; |
| 18 #else // __OBJC__ | 19 #else // __OBJC__ |
| 19 class NSString; | 20 class NSString; |
| 20 #endif // __OBJC__ | 21 #endif // __OBJC__ |
| 21 | 22 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 51 // it. | 52 // it. |
| 52 void SetMacPreferencesForTesting(MacPreferences* preferences); | 53 void SetMacPreferencesForTesting(MacPreferences* preferences); |
| 53 | 54 |
| 54 // Used internally only. | 55 // Used internally only. |
| 55 base::FilePath GetCustomPicasaAppDataPathFromMacPreferences(); | 56 base::FilePath GetCustomPicasaAppDataPathFromMacPreferences(); |
| 56 #endif // OS_MACOSX | 57 #endif // OS_MACOSX |
| 57 | 58 |
| 58 } // namespace picasa | 59 } // namespace picasa |
| 59 | 60 |
| 60 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_PICASA_FINDER_H_ | 61 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_PICASA_FINDER_H_ |
| OLD | NEW |