| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_BROWSER_LOCAL_DISCOVERY_PRIVET_CONSTANTS_H_ | 5 #ifndef CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_CONSTANTS_H_ |
| 6 #define CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_CONSTANTS_H_ | 6 #define CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_CONSTANTS_H_ |
| 7 | 7 |
| 8 namespace local_discovery { | 8 namespace local_discovery { |
| 9 | 9 |
| 10 extern const char kPrivetKeyError[]; | 10 extern const char kPrivetKeyError[]; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 extern const char kPrivetConnectionStatusOnline[]; | 41 extern const char kPrivetConnectionStatusOnline[]; |
| 42 extern const char kPrivetConnectionStatusOffline[]; | 42 extern const char kPrivetConnectionStatusOffline[]; |
| 43 extern const char kPrivetConnectionStatusConnecting[]; | 43 extern const char kPrivetConnectionStatusConnecting[]; |
| 44 extern const char kPrivetConnectionStatusNotConfigured[]; | 44 extern const char kPrivetConnectionStatusNotConfigured[]; |
| 45 | 45 |
| 46 const int kPrivetDefaultTimeout = 15; | 46 const int kPrivetDefaultTimeout = 15; |
| 47 | 47 |
| 48 const double kPrivetMaximumTimeRandomAddition = 0.2; | 48 const double kPrivetMaximumTimeRandomAddition = 0.2; |
| 49 | 49 |
| 50 const int kAccountIndexUseOAuth2 = -1; |
| 51 |
| 50 } // namespace local_discovery | 52 } // namespace local_discovery |
| 51 | 53 |
| 52 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_CONSTANTS_H_ | 54 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_CONSTANTS_H_ |
| OLD | NEW |