Commit c051f656 authored by Wez's avatar Wez Committed by Commit Bot

[Fuchsia] Update FIDL to use |bytes| syntax.

Recent updates to fidlc added a |bytes| synonym for the |vector<uint8>|
type, to improve readability of protocols which need to handle sequences
of octets that are not necessarily UTF-8 encoded (e.g. binary data or
strings using other character encodings).

Change-Id: I3a25086db9ffd5fffe6622b58e7cbd07364531aa
Reviewed-on: https://chromium-review.googlesource.com/c/1476410
Commit-Queue: Wez <wez@chromium.org>
Auto-Submit: Wez <wez@chromium.org>
Reviewed-by: default avatarSergey Ulanov <sergeyu@chromium.org>
Cr-Commit-Position: refs/heads/master@{#633770}
parent 0d963bd6
...@@ -39,7 +39,7 @@ struct LoadUrlParams { ...@@ -39,7 +39,7 @@ struct LoadUrlParams {
bool user_activated = false; bool user_activated = false;
/// Custom HTTP headers. /// Custom HTTP headers.
vector<vector<uint8>> headers; vector<bytes> headers;
}; };
/// Characterizes the origin of a LoadUrl request. /// Characterizes the origin of a LoadUrl request.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment