blob: 5de01f64dbc1362cb92ff1365260f24219533d90 [file] [log] [blame]
Yuwei Huang022462d2021-08-24 21:12:491// 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 Downingad3f2592021-09-21 20:06:195#ifndef REMOTING_BASE_USER_SETTING_KEYS_H_
6#define REMOTING_BASE_USER_SETTING_KEYS_H_
Yuwei Huang022462d2021-08-24 21:12:497
8#include "build/build_config.h"
Joe Downingad3f2592021-09-21 20:06:199#include "remoting/base/user_settings.h"
Yuwei Huang022462d2021-08-24 21:12:4910
11namespace 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
18constexpr UserSettingKey kWinPreviousDefaultWebBrowserProgId =
19 "PreviousDefaultBrowserProgId";
20
21#endif // defined(OS_WIN)
22
23} // namespace remoting
24
Joe Downingad3f2592021-09-21 20:06:1925#endif // REMOTING_BASE_USER_SETTING_KEYS_H_