Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "remoting/client/chromoting_client.h" | 5 #include "remoting/client/chromoting_client.h" |
| 6 | 6 |
| 7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
| 8 #include "remoting/base/tracer.h" | 8 #include "remoting/base/tracer.h" |
| 9 #include "remoting/client/chromoting_view.h" | 9 #include "remoting/client/chromoting_view.h" |
| 10 #include "remoting/client/client_context.h" | 10 #include "remoting/client/client_context.h" |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 210 // Initialize the decoder. | 210 // Initialize the decoder. |
| 211 rectangle_decoder_->Initialize(config); | 211 rectangle_decoder_->Initialize(config); |
| 212 | 212 |
| 213 // Schedule the input handler to process the event queue. | 213 // Schedule the input handler to process the event queue. |
| 214 input_handler_->Initialize(); | 214 input_handler_->Initialize(); |
| 215 } | 215 } |
| 216 | 216 |
| 217 //////////////////////////////////////////////////////////////////////////// | 217 //////////////////////////////////////////////////////////////////////////// |
| 218 // ClientStub control channel interface. | 218 // ClientStub control channel interface. |
| 219 void ChromotingClient::NotifyResolution( | 219 void ChromotingClient::NotifyResolution( |
| 220 const protocol::NotifyResolutionRequest* msg, | 220 const protocol::NotifyResolutionRequest* msg, Task* done) { |
| 221 Task* done) { | |
| 222 // TODO(garykac): Implement this. | 221 // TODO(garykac): Implement this. |
|
awong
2010/12/23 02:30:31
Can you add NOTIMPLEMENTED() here too?
| |
| 222 done->Run(); | |
| 223 delete done; | |
| 224 } | |
| 225 | |
| 226 void ChromotingClient::BeginSessionResponse( | |
| 227 const protocol::LocalLoginStatus* msg, Task* done) { | |
| 228 NOTIMPLEMENTED(); | |
| 223 } | 229 } |
| 224 | 230 |
| 225 } // namespace remoting | 231 } // namespace remoting |
| OLD | NEW |