| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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" |
| 11 #include "remoting/client/input_handler.h" | 11 #include "remoting/client/input_handler.h" |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 if (msg->success()) { | 259 if (msg->success()) { |
| 260 connection_->OnClientAuthenticated(); | 260 connection_->OnClientAuthenticated(); |
| 261 } | 261 } |
| 262 | 262 |
| 263 view_->UpdateLoginStatus(msg->success(), msg->error_info()); | 263 view_->UpdateLoginStatus(msg->success(), msg->error_info()); |
| 264 done->Run(); | 264 done->Run(); |
| 265 delete done; | 265 delete done; |
| 266 } | 266 } |
| 267 | 267 |
| 268 } // namespace remoting | 268 } // namespace remoting |
| OLD | NEW |