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

Unified Diff: third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.h

Issue 2522553003: Mojo C++ bindings: switch WebKit mojom targets to use STL/WTF types. (Closed)
Patch Set: . Created 4 years, 1 month 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: third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.h
diff --git a/third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.h b/third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.h
index a0c86017780836187094108d642aa8514d05ea75..23a9c7fc5dc619da6accf2268afafd1bafd6e635 100644
--- a/third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.h
+++ b/third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.h
@@ -54,7 +54,7 @@ class BroadcastChannel final : public EventTargetWithInlineData,
BroadcastChannel(ExecutionContext*, const String& name);
// mojom::blink::BroadcastChannelClient:
- void OnMessage(mojo::WTFArray<uint8_t> message) override;
+ void OnMessage(const WTF::Vector<uint8_t>& message) override;
// Called when the mojo binding disconnects.
void onError();

Powered by Google App Engine
This is Rietveld 408576698