Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apis/RDKWindowManager/IRDKWindowManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,17 @@ struct EXTERNAL IRDKWindowManager : virtual public Core::IUnknown {
virtual void OnVisible(const std::string& appInstanceId){};

// @brief Notifies when an application is hidden
// @text OnHidden
// @text onHidden
// @param appInstanceId: the identifier of the hidden application
virtual void OnHidden(const std::string& appInstanceId){};

// @brief Notifies when an application is in focus
// @text OnFocus
// @text onFocus
// @param appInstanceId: the identifier of the focussed application
virtual void OnFocus(const std::string& appInstanceId){};

// @brief Notifies when an application is blurred
// @text OnBlur
// @text onBlur
// @param appInstanceId: the identifier of the blurred application
virtual void OnBlur(const std::string& appInstanceId){};
};
Expand Down
6 changes: 3 additions & 3 deletions docs/apis/RDKWindowManager.md
Original file line number Diff line number Diff line change
Expand Up @@ -1209,11 +1209,11 @@ RDKWindowManager interface events:

| Event | Description |
| :-------- | :-------- |
| [OnBlur](#OnBlur) | Notifies when an application is blurred |
| [onBlur](#onBlur) | Notifies when an application is blurred |
| [onConnected](#onConnected) | Notifies when an application is connected |
| [onDisconnected](#onDisconnected) | Notifies when an application is disconnected |
| [OnFocus](#OnFocus) | Notifies when an application is in focus |
| [OnHidden](#OnHidden) | Notifies when an application is hidden |
| [onFocus](#onFocus) | Notifies when an application is in focus |
| [onHidden](#onHidden) | Notifies when an application is hidden |
| [onReady](#onReady) | Posting the client for first frame ready. |
| [onUserInactivity](#onUserInactivity) | Posting the client is inactive state |
| [onVisible](#onVisible) | Notifies when an application is visible |
Expand Down
Loading