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

Side by Side Diff: doc/service-api.txt

Issue 6731067: flimflam: revise multi-profile support to pin objects to a profile (Closed) Base URL: ssh://gitrw.chromium.org:9222/flimflam.git@master
Patch Set: fix diff Created 9 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | include/notifier.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 Service hierarchy 1 Service hierarchy
2 ================= 2 =================
3 3
4 Service org.chromium.flimflam 4 Service org.chromium.flimflam
5 Interface org.chromium.flimflam.Service 5 Interface org.chromium.flimflam.Service
6 Object path [variable prefix]/{service0,service1,...} 6 Object path [variable prefix]/{service0,service1,...}
7 7
8 Methods dict GetProperties() 8 Methods dict GetProperties()
9 9
10 Returns properties for the service object. See 10 Returns properties for the service object. See
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 an error message. It is not possible to remove these 78 an error message. It is not possible to remove these
79 kind of devices. 79 kind of devices.
80 80
81 Possible Errors: [service].Error.InvalidArguments 81 Possible Errors: [service].Error.InvalidArguments
82 82
83 void MoveBefore(object service) 83 void MoveBefore(object service)
84 84
85 If a service has been used before, this allows a 85 If a service has been used before, this allows a
86 reorder of the favorite services. 86 reorder of the favorite services.
87 87
88 The target service object must be part of this
89 profile. Moving between profiles is not supported.
90
91 Possible Errors: [service].Error.InvalidArguments 88 Possible Errors: [service].Error.InvalidArguments
92 89
93 void MoveAfter(object service) 90 void MoveAfter(object service)
94 91
95 If a service has been used before, this allows a 92 If a service has been used before, this allows a
96 reorder of the favorite services. 93 reorder of the favorite services.
97 94
98 The target service object must be part of this
99 profile. Moving between profiles is not supported.
100
101 Possible Errors: [service].Error.InvalidArguments 95 Possible Errors: [service].Error.InvalidArguments
102 96
103 void ActivateCellularModem(string carrier) 97 void ActivateCellularModem(string carrier)
104 98
105 Activate a cellular modem on the provided carrier. 99 Activate a cellular modem on the provided carrier.
106 100
107 This method returns immediately. The caller 101 This method returns immediately. The caller
108 can either poll the Cellular.ActivationState 102 can either poll the Cellular.ActivationState
109 property, or monitor the PropertyChanged 103 property, or monitor the PropertyChanged
110 signal to know when and if the 104 signal to know when and if the
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
683 string WiFi.AuthMode [readonly] 677 string WiFi.AuthMode [readonly]
684 678
685 If the service type is "wifi" and the state is 679 If the service type is "wifi" and the state is
686 "configuration" or "ready", then this property 680 "configuration" or "ready", then this property
687 will be present and contains the negotiated 681 will be present and contains the negotiated
688 authentication method. 682 authentication method.
689 683
690 There are too many possible values to enumerate here. 684 There are too many possible values to enumerate here.
691 The complete set depends on the capabilities of the 685 The complete set depends on the capabilities of the
692 associated WiFi supplicant. 686 associated WiFi supplicant.
OLDNEW
« no previous file with comments | « no previous file | include/notifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698