summaryrefslogtreecommitdiffstats
path: root/content/common/browser_plugin/browser_plugin_message_enums.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/common/browser_plugin/browser_plugin_message_enums.h')
-rw-r--r--content/common/browser_plugin/browser_plugin_message_enums.h20
1 files changed, 12 insertions, 8 deletions
diff --git a/content/common/browser_plugin/browser_plugin_message_enums.h b/content/common/browser_plugin/browser_plugin_message_enums.h
index c4ea346..9fe045a 100644
--- a/content/common/browser_plugin/browser_plugin_message_enums.h
+++ b/content/common/browser_plugin/browser_plugin_message_enums.h
@@ -9,20 +9,24 @@ enum BrowserPluginPermissionType {
// Unknown type of permission request.
BrowserPluginPermissionTypeUnknown,
- // New window requests.
- // Note: Even though new windows don't use the permission API, the new window
- // API is sufficiently similar that it's convenient to consider it a
- // permission type for code reuse.
- BrowserPluginPermissionTypeNewWindow,
-
- // Media access (audio/video) permission request type.
- BrowserPluginPermissionTypeMedia,
+ // Download.
+ BrowserPluginPermissionTypeDownload,
// Geolocation.
BrowserPluginPermissionTypeGeolocation,
+ // Media access (audio/video) permission request type.
+ BrowserPluginPermissionTypeMedia,
+
// PointerLock
BrowserPluginPermissionTypePointerLock,
+
+
+ // New window requests.
+ // Note: Even though new windows don't use the permission API, the new window
+ // API is sufficiently similar that it's convenient to consider it a
+ // permission type for code reuse.
+ BrowserPluginPermissionTypeNewWindow,
};
#endif // CONTENT_COMMON_BROWSER_PLUGIN_BROWSER_PLUGIN_MESSAGE_ENUMS_H_