blob: ce84f38b58109308a83467089f98a4ce871a8780 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/permissions/constants.h"
namespace permissions {
const char kChooserBluetoothOverviewURL[] =
"https://support.google.com/chrome?p=bluetooth";
#if !BUILDFLAG(IS_ANDROID)
// The key in `Product Specific String Data` under which the disposition of the
// permission prompt is recorded in the post-prompt HaTS survey.
const char kPermissionsPostPromptSurveyPromptDispositionKey[] =
"PromptDisposition";
// The key in `Product Specific String Data` under which the quiet UI reason is
// recorded in the post-prompt HaTS survey.
const char kPermissionsPostPromptSurveyPromptDispositionReasonKey[] =
"PromptDispositionReason";
// The key in `Product Specific Bits Data` under which whether the prompt was
// triggered by a user gestured is recorded in the post-prompt HaTS survey.
const char kPermissionsPostPromptSurveyHadGestureKey[] = "HadGesture";
#endif
} // namespace permissions
|