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 8 #include "base/files/file_path.h" 9 10 namespace master_prefs { 11 12 // Returns the path to the master preferences file. Note that this path may be 13 // empty (in the case where this type of build cannot have a master preferences 14 // file) or may not actually exist on the filesystem. 15 base::FilePath MasterPrefsPath(); 16 17 } // namespace master_prefs 18 19 #endif // CHROME_BROWSER_MAC_MASTER_PREFS_H_ 20