summaryrefslogtreecommitdiffstats
path: root/components/wifi_sync.gypi
Commit message (Collapse)AuthorAgeFilesLines
* wifi_sync: add WifiConfigDelegatequiche2015-01-171-0/+3
| | | | | | | | | | | | | | | | WifiConfigDelegate provides the ability to modify the platform's Wi-Fi settings. This CL includes an abstract interface class, and a concrete implementatin for ChromeOS. This class will be used by WifiCredentialSyncableService, to effect the changes requested by Chrome Sync. BUG=chromium:431435 TEST=components_unittests --gtest_filter="Wifi*" Review URL: https://codereview.chromium.org/836363002 Cr-Commit-Position: refs/heads/master@{#311991}
* wifi_sync: add WifiSecurityClass utility functionsquiche2015-01-091-0/+2
| | | | | | | | | | | | | | | | - Add functions to convert to/from WifiSecurityClass, and sync's representation of the same concept. - Add a function to convert from WifiSecurityClass to an ONC string. - Add a function to check if a WifiSecurityClass allows passphrases. BUG=chromium:431432 TEST=components_unittests --gtest_filter="Wifi*" Review URL: https://codereview.chromium.org/841803002 Cr-Commit-Position: refs/heads/master@{#310894}
* Add a new component for WiFi credential sync. Populate thequiche2014-12-201-0/+29
new component with a stub SyncableService, and its corresponding factory. This SyncableService is plumbed into sync iff "--enable-wifi-credential-sync" is present in the command-line. Also: - add sync integration tests (single client, and two client) - add WifiSecurityClass: an enum to provide an internal representation of WiFi security classes (e.g. WEP, PSK). - add WifiCredential: an abstraction of the parameters required to find and connect to a WiFi network - add conversions between ModelType and NotificationType, for WIFI_CREDENTIALS BUG=chromium:426693 BUG=chromium:426696 BUG=chromium:427595 TEST=sync_integration_tests --gtest_filter="*Wifi*" TEST=components_unittests --gtest_filter="Wifi*" Review URL: https://codereview.chromium.org/709683004 Cr-Commit-Position: refs/heads/master@{#309333}