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..09343a86d75ec3b3f66d7cc58af597e76b0338cc |
| --- /dev/null |
| +++ b/content/public/browser/permission_type.h |
| @@ -0,0 +1,26 @@ |
| +// 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. |
|
Peter Beverloo
2014/10/24 14:37:28
nit: empty line under this one.
Miguel Garcia
2014/10/24 16:05:32
Done.
|
| +#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 UMA guidelines. |
| +// 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_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 |
|
Peter Beverloo
2014/10/24 14:37:28
nit: empty line under this one.
Miguel Garcia
2014/10/24 16:05:32
Done.
|
| +#endif // CONTENT_PUBLIC_BROWSER_PERMISSION_TYPE_H_ |