| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_COMMON_CHROME_PATHS_INTERNAL_H_ | 5 #ifndef CHROME_COMMON_CHROME_PATHS_INTERNAL_H_ |
| 6 #define CHROME_COMMON_CHROME_PATHS_INTERNAL_H_ | 6 #define CHROME_COMMON_CHROME_PATHS_INTERNAL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 // the app mode loader. This should be called before |ChromeMain()|. This takes | 48 // the app mode loader. This should be called before |ChromeMain()|. This takes |
| 49 // ownership of the object |path| and the caller must not delete it. | 49 // ownership of the object |path| and the caller must not delete it. |
| 50 void SetOverrideVersionedDirectory(const FilePath* path); | 50 void SetOverrideVersionedDirectory(const FilePath* path); |
| 51 | 51 |
| 52 // Most of the application is further contained within the framework. The | 52 // Most of the application is further contained within the framework. The |
| 53 // framework bundle is located within the versioned directory at a specific | 53 // framework bundle is located within the versioned directory at a specific |
| 54 // path. The only components in the versioned directory not included in the | 54 // path. The only components in the versioned directory not included in the |
| 55 // framework are things that also depend on the framework, such as the helper | 55 // framework are things that also depend on the framework, such as the helper |
| 56 // app bundle. | 56 // app bundle. |
| 57 FilePath GetFrameworkBundlePath(); | 57 FilePath GetFrameworkBundlePath(); |
| 58 |
| 59 // Get the local library directory. |
| 60 bool GetLocalLibraryDirectory(FilePath* result); |
| 61 |
| 58 #endif // OS_MACOSX | 62 #endif // OS_MACOSX |
| 59 | 63 |
| 60 } // namespace chrome | 64 } // namespace chrome |
| 61 | 65 |
| 62 #endif // CHROME_COMMON_CHROME_PATHS_INTERNAL_H_ | 66 #endif // CHROME_COMMON_CHROME_PATHS_INTERNAL_H_ |
| OLD | NEW |