Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Side by Side Diff: chrome/browser/preferences_mac.cc

Issue 4062002: Dynamic policy refresh support for the Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: s/map/list/, nits. Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/preferences_mac.h ('k') | chrome/browser/preferences_mock_mac.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 }
OLDNEW
« no previous file with comments | « chrome/browser/preferences_mac.h ('k') | chrome/browser/preferences_mock_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698