Rename SonarConnection to FlipperConnection

Summary: Part of Sonar -> Flipper rename

Reviewed By: passy

Differential Revision: D9907353

fbshipit-source-id: 01f7bb84da1c27fd68d608151f437a18b6eaaa4e
This commit is contained in:
John Knox
2018-09-20 16:58:32 -07:00
committed by Facebook Github Bot
parent 3c656de7fa
commit 9889df3f3c
15 changed files with 37 additions and 37 deletions

View File

@@ -7,7 +7,7 @@
*/
#pragma once
#include "SonarConnection.h"
#include "FlipperConnection.h"
#include <string>
namespace facebook {
@@ -29,10 +29,10 @@ class SonarPlugin {
connection can be used to register method receivers as well as send
messages back to the desktop app.
*/
virtual void didConnect(std::shared_ptr<SonarConnection> conn) = 0;
virtual void didConnect(std::shared_ptr<FlipperConnection> conn) = 0;
/**
Called when a plugin has been disconnected and the SonarConnection
Called when a plugin has been disconnected and the FlipperConnection
provided in didConnect is no longer valid to use.
*/
virtual void didDisconnect() = 0;