From 39a6b4a1cfb9ac21dd7b54f1f5bbe20866d8e92e Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Fri, 14 Jun 2019 14:20:51 -0700 Subject: [PATCH] Fix the name of the channel parameter in PlatformMessage constructors --- lib/ui/window/platform_message.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ui/window/platform_message.h b/lib/ui/window/platform_message.h index 64cef2ca06a6e..58adac825169e 100644 --- a/lib/ui/window/platform_message.h +++ b/lib/ui/window/platform_message.h @@ -28,10 +28,10 @@ class PlatformMessage : public fml::RefCountedThreadSafe { } private: - PlatformMessage(std::string name, + PlatformMessage(std::string channel, std::vector data, fml::RefPtr response); - PlatformMessage(std::string name, + PlatformMessage(std::string channel, fml::RefPtr response); ~PlatformMessage();