35
35
#include " ../include/account-login/AccountLoginManager.h"
36
36
#include " ../include/application-basic/ApplicationBasicManager.h"
37
37
#include " ../include/application-launcher/ApplicationLauncherManager.h"
38
- #include " ../include/content-app-observer/ContentAppObserver.h"
39
38
#include " ../include/content-control/ContentController.h"
40
39
#include " ../include/content-launcher/AppContentLauncherManager.h"
41
40
#include " ../include/media-playback/AppMediaPlaybackManager.h"
49
48
#include < app/clusters/application-basic-server/application-basic-delegate.h>
50
49
#include < app/clusters/application-launcher-server/application-launcher-delegate.h>
51
50
#include < app/clusters/channel-server/channel-delegate.h>
52
- #include < app/clusters/content-app-observer/content-app-observer-delegate.h>
53
51
#include < app/clusters/content-control-server/content-control-delegate.h>
54
52
#include < app/clusters/content-launch-server/content-launch-delegate.h>
55
53
#include < app/clusters/keypad-input-server/keypad-input-delegate.h>
@@ -76,7 +74,6 @@ using ApplicationBasicDelegate = app::Clusters::ApplicationBasic::Delegate;
76
74
using ApplicationLauncherDelegate = app::Clusters::ApplicationLauncher::Delegate;
77
75
using ChannelDelegate = app::Clusters::Channel::Delegate;
78
76
using ContentLauncherDelegate = app::Clusters::ContentLauncher::Delegate;
79
- using ContentAppObserverDelegate = app::Clusters::ContentAppObserver::Delegate;
80
77
using ContentControlDelegate = app::Clusters::ContentControl::Delegate;
81
78
using KeypadInputDelegate = app::Clusters::KeypadInput::Delegate;
82
79
using MediaPlaybackDelegate = app::Clusters::MediaPlayback::Delegate;
@@ -118,11 +115,6 @@ class DLL_EXPORT ContentAppImpl : public ContentApp
118
115
mContentLauncherDelegate .SetEndpointId (GetEndpointId ());
119
116
return &mContentLauncherDelegate ;
120
117
};
121
- ContentAppObserverDelegate * GetContentAppObserverDelegate () override
122
- {
123
- mContentAppObserverDelegate .SetEndpointId (GetEndpointId ());
124
- return &mContentAppObserverDelegate ;
125
- };
126
118
ContentControlDelegate * GetContentControlDelegate () override
127
119
{
128
120
mContentControlDelegate .SetEndpointId (GetEndpointId ());
@@ -146,7 +138,6 @@ class DLL_EXPORT ContentAppImpl : public ContentApp
146
138
ApplicationLauncherManager mApplicationLauncherDelegate ;
147
139
ChannelManager mChannelDelegate ;
148
140
ContentController mContentControlDelegate ;
149
- ContentAppObserver mContentAppObserverDelegate ;
150
141
AppContentLauncherManager mContentLauncherDelegate ;
151
142
KeypadInputManager mKeypadInputDelegate ;
152
143
AppMediaPlaybackManager mMediaPlaybackDelegate ;
0 commit comments