OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_MAC_MASTER_PREFS_H_ |
| 6 #define CHROME_BROWSER_MAC_MASTER_PREFS_H_ |
| 7 #pragma once |
| 8 |
| 9 #include "base/file_path.h" |
| 10 |
| 11 namespace master_prefs { |
| 12 |
| 13 // Returns the path to the master preferences file. Note that this path may be |
| 14 // empty (in the case where this type of build cannot have a master preferences |
| 15 // file) or may not actually exist on the filesystem. |
| 16 FilePath MasterPrefsPath(); |
| 17 |
| 18 } // namespace master_prefs |
| 19 |
| 20 #endif // CHROME_BROWSER_MAC_MASTER_PREFS_H_ |
OLD | NEW |