Yuwei Huang | 022462d | 2021-08-24 21:12:49 | [diff] [blame] | 1 | // Copyright 2021 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
Joe Downing | ad3f259 | 2021-09-21 20:06:19 | [diff] [blame] | 5 | #ifndef REMOTING_BASE_USER_SETTING_KEYS_H_ |
| 6 | #define REMOTING_BASE_USER_SETTING_KEYS_H_ |
Yuwei Huang | 022462d | 2021-08-24 21:12:49 | [diff] [blame] | 7 | |
| 8 | #include "build/build_config.h" |
Joe Downing | ad3f259 | 2021-09-21 20:06:19 | [diff] [blame] | 9 | #include "remoting/base/user_settings.h" |
Yuwei Huang | 022462d | 2021-08-24 21:12:49 | [diff] [blame] | 10 | |
| 11 | namespace remoting { |
| 12 | |
| 13 | #if defined(OS_WIN) |
| 14 | |
| 15 | // Windows settings are stored in the registry where the key and value names use |
| 16 | // pascal case. |
| 17 | |
| 18 | constexpr UserSettingKey kWinPreviousDefaultWebBrowserProgId = |
| 19 | "PreviousDefaultBrowserProgId"; |
| 20 | |
| 21 | #endif // defined(OS_WIN) |
| 22 | |
| 23 | } // namespace remoting |
| 24 | |
Joe Downing | ad3f259 | 2021-09-21 20:06:19 | [diff] [blame] | 25 | #endif // REMOTING_BASE_USER_SETTING_KEYS_H_ |