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

Side by Side Diff: src/platform/cryptohome/etc/Cryptohome.conf

Issue 2051003: Initial patch from Will. (Closed) Base URL: ssh://git@chromiumos-git/chromiumos
Patch Set: Address style nits. Created 10 years, 7 months 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
OLDNEW
1 <!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN" 1 <!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
2 "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> 2 "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
3 <busconfig> 3 <busconfig>
4 <policy user="root"> 4 <policy user="root">
5 <allow own="org.chromium.Cryptohome" /> 5 <allow own="org.chromium.Cryptohome" />
6 <allow send_destination="org.chromium.Cryptohome" /> 6 <allow send_destination="org.chromium.Cryptohome" />
7 </policy> 7 </policy>
8 <policy user="chronos"> 8 <policy user="chronos">
9 <!-- introspection is denied --> 9 <!-- introspection is denied -->
10 <deny send_destination="org.chromium.Cryptohome" 10 <deny send_destination="org.chromium.Cryptohome"
11 send_interface="org.freedesktop.DBus.Introspectable" /> 11 send_interface="org.freedesktop.DBus.Introspectable" />
12 <!-- properties denied --> 12 <!-- properties denied -->
13 <deny send_destination="org.chromium.Cryptohome" 13 <deny send_destination="org.chromium.Cryptohome"
14 send_interface="org.freedesktop.DBus.Properties" /> 14 send_interface="org.freedesktop.DBus.Properties" />
15 <!-- allow explicit methods --> 15 <!-- allow explicit methods -->
16 <allow send_destination="org.chromium.Cryptohome" 16 <allow send_destination="org.chromium.Cryptohome"
17 send_interface="org.chromium.CryptohomeInterface" 17 send_interface="org.chromium.CryptohomeInterface"
18 send_member="CheckKey"/> 18 send_member="CheckKey"/>
19 <allow send_destination="org.chromium.Cryptohome" 19 <allow send_destination="org.chromium.Cryptohome"
20 send_interface="org.chromium.CryptohomeInterface" 20 send_interface="org.chromium.CryptohomeInterface"
21 send_member="MigrateKey"/>
22 <allow send_destination="org.chromium.Cryptohome"
23 send_interface="org.chromium.CryptohomeInterface"
24 send_member="Remove"/>
25 <allow send_destination="org.chromium.Cryptohome"
26 send_interface="org.chromium.CryptohomeInterface"
27 send_member="GetSystemSalt"/>
28 <allow send_destination="org.chromium.Cryptohome"
29 send_interface="org.chromium.CryptohomeInterface"
21 send_member="IsMounted"/> 30 send_member="IsMounted"/>
22 <allow send_destination="org.chromium.Cryptohome" 31 <allow send_destination="org.chromium.Cryptohome"
23 send_interface="org.chromium.CryptohomeInterface" 32 send_interface="org.chromium.CryptohomeInterface"
24 send_member="Mount"/> 33 send_member="Mount"/>
25 <allow send_destination="org.chromium.Cryptohome" 34 <allow send_destination="org.chromium.Cryptohome"
26 send_interface="org.chromium.CryptohomeInterface" 35 send_interface="org.chromium.CryptohomeInterface"
27 send_member="Unmount"/> 36 send_member="Unmount"/>
28 </policy> 37 </policy>
29 <policy context="default"> 38 <policy context="default">
30 <deny send_destination="org.chromium.Cryptohome" /> 39 <deny send_destination="org.chromium.Cryptohome" />
31 </policy> 40 </policy>
32 </busconfig> 41 </busconfig>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698