summaryrefslogtreecommitdiffstats
path: root/cc/trees/remote_channel_main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cc/trees/remote_channel_main.cc')
-rw-r--r--cc/trees/remote_channel_main.cc9
1 files changed, 7 insertions, 2 deletions
diff --git a/cc/trees/remote_channel_main.cc b/cc/trees/remote_channel_main.cc
index 27fce830..8c1382f 100644
--- a/cc/trees/remote_channel_main.cc
+++ b/cc/trees/remote_channel_main.cc
@@ -52,7 +52,9 @@ void RemoteChannelMain::UpdateTopControlsStateOnImpl(
bool animate) {}
void RemoteChannelMain::InitializeOutputSurfaceOnImpl(
- OutputSurface* output_surface) {}
+ OutputSurface* output_surface) {
+ NOTREACHED() << "Should not be called on the server LayerTreeHost";
+}
void RemoteChannelMain::MainThreadHasStoppedFlingingOnImpl() {
proto::CompositorMessage proto;
@@ -71,10 +73,13 @@ void RemoteChannelMain::FinishAllRenderingOnImpl(CompletionEvent* completion) {
completion->Signal();
}
-void RemoteChannelMain::SetVisibleOnImpl(bool visible) {}
+void RemoteChannelMain::SetVisibleOnImpl(bool visible) {
+ NOTIMPLEMENTED() << "Visibility is not controlled by the server";
+}
void RemoteChannelMain::ReleaseOutputSurfaceOnImpl(
CompletionEvent* completion) {
+ NOTREACHED() << "Should not be called on the server LayerTreeHost";
completion->Signal();
}