| 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 #include "chrome/browser/preferences_mac.h" | 5 #include "chrome/browser/preferences_mac.h" |
| 6 | 6 |
| 7 Boolean MacPreferences::AppSynchronize(CFStringRef applicationID) { |
| 8 return CFPreferencesAppSynchronize(applicationID); |
| 9 } |
| 10 |
| 7 CFPropertyListRef MacPreferences::CopyAppValue(CFStringRef key, | 11 CFPropertyListRef MacPreferences::CopyAppValue(CFStringRef key, |
| 8 CFStringRef applicationID) { | 12 CFStringRef applicationID) { |
| 9 return CFPreferencesCopyAppValue(key, applicationID); | 13 return CFPreferencesCopyAppValue(key, applicationID); |
| 10 } | 14 } |
| 11 | 15 |
| 12 Boolean MacPreferences::AppValueIsForced(CFStringRef key, | 16 Boolean MacPreferences::AppValueIsForced(CFStringRef key, |
| 13 CFStringRef applicationID) { | 17 CFStringRef applicationID) { |
| 14 return CFPreferencesAppValueIsForced(key, applicationID); | 18 return CFPreferencesAppValueIsForced(key, applicationID); |
| 15 } | 19 } |
| OLD | NEW |