Fix the name of the channel parameter in PlatformMessage constructors (#9334)

This commit is contained in:
Jason Simmons 2019-06-14 14:56:51 -07:00 committed by GitHub
parent 7283ae3a7e
commit 70ebfc3610
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,10 +28,10 @@ class PlatformMessage : public fml::RefCountedThreadSafe<PlatformMessage> {
}
private:
PlatformMessage(std::string name,
PlatformMessage(std::string channel,
std::vector<uint8_t> data,
fml::RefPtr<PlatformMessageResponse> response);
PlatformMessage(std::string name,
PlatformMessage(std::string channel,
fml::RefPtr<PlatformMessageResponse> response);
~PlatformMessage();