Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Side by Side Diff: chrome/browser/media_galleries/fileapi/picasa_finder.h

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698