Fix emulator build error
[platform/framework/web/chromium-efl.git] / components / permissions / permission_request_enums.h
1 // Copyright 2020 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_PERMISSIONS_PERMISSION_REQUEST_ENUMS_H_
6 #define COMPONENTS_PERMISSIONS_PERMISSION_REQUEST_ENUMS_H_
7
8 namespace permissions {
9
10 // Used for UMA to record whether a gesture was associated with the request. For
11 // simplicity not all request types track whether a gesture is associated with
12 // it or not, for these types of requests metrics are not recorded.
13 enum class PermissionRequestGestureType {
14   UNKNOWN,
15   GESTURE,
16   NO_GESTURE,
17   // NUM must be the last value in the enum.
18   NUM
19 };
20
21 }  // namespace permissions
22
23 #endif  // COMPONENTS_PERMISSIONS_PERMISSION_REQUEST_ENUMS_H_