| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #ifndef CHROME_COMMON_NET_NOTIFIER_COMMUNICATOR_CONNECTION_OPTIONS_H_ | 5 #ifndef JINGLE_NOTIFIER_COMMUNICATOR_CONNECTION_OPTIONS_H_ |
| 6 #define CHROME_COMMON_NET_NOTIFIER_COMMUNICATOR_CONNECTION_OPTIONS_H_ | 6 #define JINGLE_NOTIFIER_COMMUNICATOR_CONNECTION_OPTIONS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "talk/base/cryptstring.h" | 10 #include "talk/base/cryptstring.h" |
| 11 #include "talk/base/helpers.h" | 11 #include "talk/base/helpers.h" |
| 12 | 12 |
| 13 namespace notifier { | 13 namespace notifier { |
| 14 | 14 |
| 15 class ConnectionOptions { | 15 class ConnectionOptions { |
| 16 public: | 16 public: |
| (...skipping 29 matching lines...) Expand all Loading... |
| 46 int proxy_port_; | 46 int proxy_port_; |
| 47 bool use_proxy_auth_; | 47 bool use_proxy_auth_; |
| 48 std::string auth_user_; | 48 std::string auth_user_; |
| 49 talk_base::CryptString auth_pass_; | 49 talk_base::CryptString auth_pass_; |
| 50 bool allow_unverified_certs_; | 50 bool allow_unverified_certs_; |
| 51 // Allow the copy constructor and operator=. | 51 // Allow the copy constructor and operator=. |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 } // namespace notifier | 54 } // namespace notifier |
| 55 | 55 |
| 56 #endif // CHROME_COMMON_NET_NOTIFIER_COMMUNICATOR_CONNECTION_OPTIONS_H_ | 56 #endif // JINGLE_NOTIFIER_COMMUNICATOR_CONNECTION_OPTIONS_H_ |
| OLD | NEW |