Add abhijeet.k@samsung.com to AUTHORS list.
[chromium-blink-merge.git] / components / policy / core / common / preferences_mac.cc
blobe65b1623460e3ec64c348caf4618e6edb770ccb6
1 // Copyright 2013 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.
5 #include "components/policy/core/common/preferences_mac.h"
7 Boolean MacPreferences::AppSynchronize(CFStringRef applicationID) {
8 return CFPreferencesAppSynchronize(applicationID);
11 CFPropertyListRef MacPreferences::CopyAppValue(CFStringRef key,
12 CFStringRef applicationID) {
13 return CFPreferencesCopyAppValue(key, applicationID);
16 Boolean MacPreferences::AppValueIsForced(CFStringRef key,
17 CFStringRef applicationID) {
18 return CFPreferencesAppValueIsForced(key, applicationID);