Skip to content

Commit

Permalink
Restyled by whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits committed May 20, 2022
1 parent 22ba274 commit 56bb8b4
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions examples/tv-app/android/java/AppImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ EndpointId ContentAppFactoryImpl::AddContentApp(ContentAppImpl & app) {

/**
* @brief Code for testing the message flow path.
*
*
*/
class TestCommandHandlerCallback : public app::CommandHandler::Callback {
void OnDone(app::CommandHandler & apCommandObj){}
Expand All @@ -421,7 +421,7 @@ class TestCommandHandlerCallback : public app::CommandHandler::Callback {

/**
* @brief Code for testing the message flow path.
*
*
*/
void ContentAppFactoryImpl::SendTestMessage(EndpointId epId, const char * message){
ChipLogProgress(DeviceLayer, "ContentAppFactoryImpl SendTestMessage called with message %s & endpointId %d", message, epId);
Expand Down
4 changes: 2 additions & 2 deletions examples/tv-app/android/java/AppImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ class DLL_EXPORT ContentAppImpl : public ContentApp
const char * szApplicationVersion, const char * setupPIN, jobject manager) :
mApplicationBasicDelegate(kCatalogVendorId, BuildAppId(vendorId), szVendorName, vendorId, szApplicationName, productId,
szApplicationVersion),
mAccountLoginDelegate(setupPIN),
mAccountLoginDelegate(setupPIN),
mContentLauncherDelegate(ContentAppCommandDelegate(manager), { "image/*", "video/*" },
to_underlying(SupportedStreamingProtocol::kDash) |
to_underlying(SupportedStreamingProtocol::kHls)),
to_underlying(SupportedStreamingProtocol::kHls)),
mTargetNavigatorDelegate({ "home", "search", "info", "guide", "menu" }, 0){};
virtual ~ContentAppImpl() {}

Expand Down
2 changes: 1 addition & 1 deletion examples/tv-app/android/java/ContentAppCommandDelegate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ const char * ContentAppCommandDelegate::sendCommand(chip::EndpointId epID, std::
}

}
}
}
2 changes: 1 addition & 1 deletion examples/tv-app/android/java/ContentAppCommandDelegate.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ class ContentAppCommandDelegate
};

}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
public interface ContentAppEndpointManager {

public String sendCommand(int endpointId, String commandPayload);

}
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ public ContentAppEndpointManagerStub(ContentAppEndpointManager delegate){
public String sendCommand(int endpointId, String commandPayload) {
return delegate.sendCommand(endpointId, commandPayload);
}

}

0 comments on commit 56bb8b4

Please sign in to comment.