diff options
author | garykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-08 17:51:47 +0000 |
---|---|---|
committer | garykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-08 17:51:47 +0000 |
commit | 376dea2176504ad886c68110aff882a113807467 (patch) | |
tree | 3d835427a52ee536c72ae6fbe74124dec38c6a9c /remoting/client/x11_view.cc | |
parent | 02d08e07d137b394792d15b712d029455713b195 (diff) | |
download | chromium_src-376dea2176504ad886c68110aff882a113807467.zip chromium_src-376dea2176504ad886c68110aff882a113807467.tar.gz chromium_src-376dea2176504ad886c68110aff882a113807467.tar.bz2 |
Hook up communication between Chromoting plugin and JS so that it can notify the JS UI of status changes.
Push SetState handling down ChromotingView so that UI changes are contained in the View.
BUG=54855
TEST=chromoting unittests
Review URL: http://codereview.chromium.org/3446020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61977 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/client/x11_view.cc')
-rw-r--r-- | remoting/client/x11_view.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/remoting/client/x11_view.cc b/remoting/client/x11_view.cc index 9ccdb88..07f2f87 100644 --- a/remoting/client/x11_view.cc +++ b/remoting/client/x11_view.cc @@ -133,6 +133,10 @@ void X11View::UnsetSolidFill() { // NOTIMPLEMENTED(); } +void X11View::SetConnectionState(ConnectionState s) { + // TODO(garykac): Implement. +} + void X11View::SetViewport(int x, int y, int width, int height) { // TODO(garykac): Implement. // NOTIMPLEMENTED(); |