summaryrefslogtreecommitdiffstats
path: root/chromeos/dbus/fake_shill_third_party_vpn_driver_client.cc
Commit message (Collapse)AuthorAgeFilesLines
* chromeos: Remove use of MessageLoopProxy and deprecated MessageLoop APIsskyostil2015-06-111-5/+7
| | | | | | | | | | This patch was mostly autogenerated with https://codereview.chromium.org/1010073002/. BUG=465354 Review URL: https://codereview.chromium.org/1173593002 Cr-Commit-Position: refs/heads/master@{#333996}
* Provide warning message for setParameterskaliamoorthi2015-03-191-2/+3
| | | | | | | | | | | | | This CL adds warning message for setParameters API of vpnProvider. The vpnProvider extension API is further filled to stable channel from dev channel. BUG=467911 TBR=stevenjb Review URL: https://codereview.chromium.org/1014053002 Cr-Commit-Position: refs/heads/master@{#321325}
* json_schema_compiler: Use std::vector<char> for binary values.pneubeck2015-01-201-2/+2
| | | | | | | | | | | | | | | | | | | | This change enables ArrayBuffer[] in IDLs / json-schema descriptions of extension APIs. This affects the code generated from these descriptions: The C++ members (and arguments to the ::Create functions) that refer to binary values are now represented by std::vector<char> instead of std::string. All usages are adapted in this CL. While there, this change updates the affected code parts - to use vector_as_array where it makes sense - unnecessary copies are removed where easily possible - and range based assigns ( ::assign(InputIterator first, InputIterator last) or the same with c'tors) are uniformly used. BUG=448383 TBR=stevenjb@chromium.org (chromeos/dbus was reviewed by bartfab@) Review URL: https://codereview.chromium.org/820673004 Cr-Commit-Position: refs/heads/master@{#312183}
* Cleanup VpnServices interface with shill clientkaliamoorthi2014-11-281-2/+1
| | | | | | | | | | | | | This CL replaces an argument from brittle pointer and length to a string. TBR=stevenjb@chromium.org BUG=407541 Review URL: https://codereview.chromium.org/768723003 Cr-Commit-Position: refs/heads/master@{#306106}
* Add new shill client for VPNkaliamoorthi2014-11-131-0/+96
This CL adds new shill client for third party vpn dbus interface. BUG=407541 Review URL: https://codereview.chromium.org/681723003 Cr-Commit-Position: refs/heads/master@{#304054}