Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/client_config.h" | 5 #include "remoting/client/client_config.h" |
| 6 | 6 |
| 7 namespace remoting { | 7 namespace remoting { |
| 8 | 8 |
| 9 ClientConfig::ClientConfig() | 9 ClientConfig::ClientConfig() { |
|
Wez
2012/05/29 21:47:04
Seems a shame to keep this code file now it's pure
| |
| 10 : use_v1_authenticator(false) { | |
| 11 } | 10 } |
| 12 | 11 |
| 13 ClientConfig::~ClientConfig() { | 12 ClientConfig::~ClientConfig() { |
| 14 } | 13 } |
| 15 | 14 |
| 16 } // namespace remoting | 15 } // namespace remoting |
| OLD | NEW |