From 70ebfc3610c38c463469ffedea85578f35ccc0a0 Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Fri, 14 Jun 2019 14:56:51 -0700 Subject: [PATCH] Fix the name of the channel parameter in PlatformMessage constructors (#9334) --- 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 64cef2ca06a..58adac82516 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();