| Index: remoting/client/chromoting_view.h
|
| diff --git a/remoting/client/chromoting_view.h b/remoting/client/chromoting_view.h
|
| index e93ab0d013701f51603bff3fcf4f9435f74ec33d..feb5bdc9d2c1e0e90d33b8904e8d907317a80b99 100644
|
| --- a/remoting/client/chromoting_view.h
|
| +++ b/remoting/client/chromoting_view.h
|
| @@ -10,10 +10,6 @@
|
|
|
| namespace remoting {
|
|
|
| -static const uint32 kCreatedColor = 0xffccccff;
|
| -static const uint32 kDisconnectedColor = 0xff00ccff;
|
| -static const uint32 kFailedColor = 0xffcc00ff;
|
| -
|
| // ChromotingView defines the behavior of an object that draws a view of the
|
| // remote desktop. Its main function is to render the update stream onto the
|
| // screen.
|
| @@ -27,17 +23,6 @@ class ChromotingView {
|
| // Free up resources allocated by this view.
|
| virtual void TearDown() = 0;
|
|
|
| - // Tells the ChromotingView to paint the current image on the screen.
|
| - virtual void Paint() = 0;
|
| -
|
| - // Fill the screen with one single static color, and ignore updates.
|
| - // Useful for debugging.
|
| - virtual void SetSolidFill(uint32 color) = 0;
|
| -
|
| - // Removes a previously set solid fill. If no fill was previous set, this
|
| - // does nothing.
|
| - virtual void UnsetSolidFill() = 0;
|
| -
|
| // Record the update the state of the connection, updating the UI as needed.
|
| virtual void SetConnectionState(protocol::ConnectionToHost::State state,
|
| protocol::ConnectionToHost::Error error) = 0;
|
|
|