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

Unified Diff: chromeos/dbus/fake_shill_third_party_vpn_driver_client.h

Issue 820673004: json_schema_compiler: Use std::vector<char> for binary values. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@simplify_json_schema
Patch Set: Fix merge error. Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chromeos/dbus/fake_shill_third_party_vpn_driver_client.h
diff --git a/chromeos/dbus/fake_shill_third_party_vpn_driver_client.h b/chromeos/dbus/fake_shill_third_party_vpn_driver_client.h
index 601ef31ab4351f4954508549d0c2722e5abafbe6..f4dae5c4aab34de397cd365b2b814c5077eb339b 100644
--- a/chromeos/dbus/fake_shill_third_party_vpn_driver_client.h
+++ b/chromeos/dbus/fake_shill_third_party_vpn_driver_client.h
@@ -42,14 +42,14 @@ class CHROMEOS_EXPORT FakeShillThirdPartyVpnDriverClient
const ShillClientHelper::ErrorCallback& error_callback) override;
void SendPacket(
const std::string& object_path_value,
- const std::string& ip_packet,
+ const std::vector<char>& ip_packet,
const base::Closure& callback,
const ShillClientHelper::ErrorCallback& error_callback) override;
ShillThirdPartyVpnDriverClient::TestInterface* GetTestInterface() override;
// ShillThirdPartyVpnDriverClient::TestInterface overrides
void OnPacketReceived(const std::string& object_path_value,
- const std::string& packet) override;
+ const std::vector<char>& packet) override;
void OnPlatformMessage(const std::string& object_path_value,
uint32_t message) override;

Powered by Google App Engine
This is Rietveld 408576698