• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
3 // found in the LICENSE file.
4 
5 #include "chrome/browser/preferences_mac.h"
6 
AppSynchronize(CFStringRef applicationID)7 Boolean MacPreferences::AppSynchronize(CFStringRef applicationID) {
8   return CFPreferencesAppSynchronize(applicationID);
9 }
10 
CopyAppValue(CFStringRef key,CFStringRef applicationID)11 CFPropertyListRef MacPreferences::CopyAppValue(CFStringRef key,
12                                                CFStringRef applicationID) {
13   return CFPreferencesCopyAppValue(key, applicationID);
14 }
15 
AppValueIsForced(CFStringRef key,CFStringRef applicationID)16 Boolean MacPreferences::AppValueIsForced(CFStringRef key,
17                                          CFStringRef applicationID) {
18   return CFPreferencesAppValueIsForced(key, applicationID);
19 }
20