Bumping manifests a=b2g-bump
[gecko.git] / xpcom / io / nsAppFileLocationProvider.h
blob2d2c0bb1899ce437272b753b88c058c58e8c3c47
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef nsAppFileLocationProvider_h
8 #define nsAppFileLocationProvider_h
10 #include "nsIDirectoryService.h"
11 #include "nsIFile.h"
12 #include "mozilla/Attributes.h"
14 class nsIFile;
16 //*****************************************************************************
17 // class nsAppFileLocationProvider
18 //*****************************************************************************
20 class nsAppFileLocationProvider MOZ_FINAL : public nsIDirectoryServiceProvider2
22 public:
23 nsAppFileLocationProvider();
25 NS_DECL_THREADSAFE_ISUPPORTS
26 NS_DECL_NSIDIRECTORYSERVICEPROVIDER
27 NS_DECL_NSIDIRECTORYSERVICEPROVIDER2
29 private:
30 ~nsAppFileLocationProvider()
34 protected:
35 NS_METHOD CloneMozBinDirectory(nsIFile** aLocalFile);
36 /**
37 * Get the product directory. This is a user-specific directory for storing
38 * application settings (e.g. the Application Data directory on windows
39 * systems).
40 * @param aLocal If true, should try to get a directory that is only stored
41 * locally (ie not transferred with roaming profiles)
43 NS_METHOD GetProductDirectory(nsIFile** aLocalFile,
44 bool aLocal = false);
45 NS_METHOD GetDefaultUserProfileRoot(nsIFile** aLocalFile,
46 bool aLocal = false);
48 #if defined(MOZ_WIDGET_COCOA)
49 static bool IsOSXLeopard();
50 #endif
52 nsCOMPtr<nsIFile> mMozBinDirectory;
55 #endif