15821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Copyright (c) 2012 The Chromium Authors. All rights reserved.
25821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Use of this source code is governed by a BSD-style license that can be
35821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// found in the LICENSE file.
45821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
55821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#ifndef CHROME_COMMON_CONTENT_SETTINGS_TYPES_H_
65821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#define CHROME_COMMON_CONTENT_SETTINGS_TYPES_H_
75821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
85821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A particular type of content to care about.  We give the user various types
95821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// of controls over each of these.
105821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)enum ContentSettingsType {
115821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // "DEFAULT" is only used as an argument to the Content Settings Window
125821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // opener; there it means "whatever was last shown".
135821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  CONTENT_SETTINGS_TYPE_DEFAULT = -1,
145821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  CONTENT_SETTINGS_TYPE_COOKIES = 0,
155821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  CONTENT_SETTINGS_TYPE_IMAGES,
165821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  CONTENT_SETTINGS_TYPE_JAVASCRIPT,
175821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  CONTENT_SETTINGS_TYPE_PLUGINS,
185821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  CONTENT_SETTINGS_TYPE_POPUPS,
195821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  CONTENT_SETTINGS_TYPE_GEOLOCATION,
205821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  CONTENT_SETTINGS_TYPE_NOTIFICATIONS,
215821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  CONTENT_SETTINGS_TYPE_AUTO_SELECT_CERTIFICATE,
225821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  CONTENT_SETTINGS_TYPE_FULLSCREEN,
235821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  CONTENT_SETTINGS_TYPE_MOUSELOCK,
245821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  CONTENT_SETTINGS_TYPE_MIXEDSCRIPT,
252a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  CONTENT_SETTINGS_TYPE_MEDIASTREAM,  // Default setting for MIC and CAMERA.
262a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  CONTENT_SETTINGS_TYPE_MEDIASTREAM_MIC,
272a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  CONTENT_SETTINGS_TYPE_MEDIASTREAM_CAMERA,
285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  CONTENT_SETTINGS_TYPE_PROTOCOL_HANDLERS,
295821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  CONTENT_SETTINGS_TYPE_PPAPI_BROKER,
307dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch  CONTENT_SETTINGS_TYPE_AUTOMATIC_DOWNLOADS,
31558790d6acca3451cf3a6b497803a5f07d0bec58Ben Murdoch  CONTENT_SETTINGS_TYPE_MIDI_SYSEX,
322a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#if defined(OS_WIN)
332a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  CONTENT_SETTINGS_TYPE_METRO_SWITCH_TO_DESKTOP,
342a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#endif
355821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  CONTENT_SETTINGS_NUM_TYPES,
365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)};
375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#endif  // CHROME_COMMON_CONTENT_SETTINGS_TYPES_H_
39