diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-07 05:07:40 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-07 05:07:40 +0000 |
commit | 9e2a3137641bc104980e13388b6088d3f4a9b52f (patch) | |
tree | 353e7915a047c43b466f2d4de514605a71691b45 /remoting/protocol/client_stub.h | |
parent | 7feba7ed4d88f95d041abd6bea7a2ba93d9a9f3a (diff) | |
download | chromium_src-9e2a3137641bc104980e13388b6088d3f4a9b52f.zip chromium_src-9e2a3137641bc104980e13388b6088d3f4a9b52f.tar.gz chromium_src-9e2a3137641bc104980e13388b6088d3f4a9b52f.tar.bz2 |
Switch remoting/protocol to new callbacks
There is still some code that uses old callbacks (particularly unittests) - I will convert them in a separate CL.
BUG=None
TEST=Unittests
Review URL: http://codereview.chromium.org/8116021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104440 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/protocol/client_stub.h')
-rw-r--r-- | remoting/protocol/client_stub.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/remoting/protocol/client_stub.h b/remoting/protocol/client_stub.h index 21b3219..49b6740f 100644 --- a/remoting/protocol/client_stub.h +++ b/remoting/protocol/client_stub.h @@ -11,8 +11,7 @@ #define REMOTING_PROTOCOL_CLIENT_STUB_H_ #include "base/basictypes.h" - -class Task; +#include "base/callback.h" namespace remoting { namespace protocol { @@ -26,7 +25,7 @@ class ClientStub { virtual ~ClientStub() {} virtual void BeginSessionResponse(const LocalLoginStatus* msg, - Task* done) = 0; + const base::Closure& done) = 0; private: DISALLOW_COPY_AND_ASSIGN(ClientStub); |