Chromium Code Reviews| Index: content/public/browser/permission_type.h |
| diff --git a/content/public/browser/permission_type.h b/content/public/browser/permission_type.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4b693a1461a71ab5c77284a93ccfd230884cff98 |
| --- /dev/null |
| +++ b/content/public/browser/permission_type.h |
| @@ -0,0 +1,27 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| +#ifndef CONTENT_PUBLIC_BROWSER_PERMISSION_TYPE_H_ |
| +#define CONTENT_PUBLIC_BROWSER_PERMISSION_TYPE_H_ |
| + |
| +namespace content { |
| + |
| +// This enum is also used for UMA purposes, so it needs to adhere to |
| +// the UMAa guidelines. |
|
Bernhard Bauer
2014/10/23 08:38:01
Nit: UMA
Miguel Garcia
2014/10/23 12:48:11
Done.
|
| +// Make sure you update histograms.xml if you add new permission types. |
| +// Never delete or reorder an entry; only add new entries |
| +// immediately before PERMISSION_NUM |
| +enum PermissionType { |
| + PERMISSION_UNKNOWN = 0, |
| + PERMISSION_MIDI_SYSEX = 1, |
| + PERMISSION_PUSH_MESSAGING = 2, |
| + PERMISSION_NOTIFICATIONS = 3, |
| + PERMISSION_GEOLOCATION = 4, |
| + PERMISSION_PROTECTED_MEDIA = 5, |
| + |
| + // Always keep this at the end. |
| + PERMISSION_NUM, |
| +}; |
| + |
| +} // namespace content |
| +#endif // CONTENT_PUBLIC_BROWSER_PERMISSION_TYPE_H_ |