Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: chrome/browser/permissions/permission_request.h

Issue 2458453002: [sensors] Add Permission guard to the generic sensor apis.
Patch Set: rebase + blink reformat Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_PERMISSIONS_PERMISSION_REQUEST_H_ 5 #ifndef CHROME_BROWSER_PERMISSIONS_PERMISSION_REQUEST_H_
6 #define CHROME_BROWSER_PERMISSIONS_PERMISSION_REQUEST_H_ 6 #define CHROME_BROWSER_PERMISSIONS_PERMISSION_REQUEST_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/strings/string16.h" 9 #include "base/strings/string16.h"
10 #include "components/content_settings/core/common/content_settings_types.h" 10 #include "components/content_settings/core/common/content_settings_types.h"
(...skipping 17 matching lines...) Expand all
28 QUOTA, 28 QUOTA,
29 DOWNLOAD, 29 DOWNLOAD,
30 MEDIA_STREAM, 30 MEDIA_STREAM,
31 REGISTER_PROTOCOL_HANDLER, 31 REGISTER_PROTOCOL_HANDLER,
32 PERMISSION_GEOLOCATION, 32 PERMISSION_GEOLOCATION,
33 PERMISSION_MIDI_SYSEX, 33 PERMISSION_MIDI_SYSEX,
34 PERMISSION_NOTIFICATIONS, 34 PERMISSION_NOTIFICATIONS,
35 PERMISSION_PROTECTED_MEDIA_IDENTIFIER, 35 PERMISSION_PROTECTED_MEDIA_IDENTIFIER,
36 PERMISSION_PUSH_MESSAGING, 36 PERMISSION_PUSH_MESSAGING,
37 PERMISSION_FLASH, 37 PERMISSION_FLASH,
38 PERMISSION_SENSORS,
38 // NUM must be the last value in the enum. 39 // NUM must be the last value in the enum.
39 NUM 40 NUM
40 }; 41 };
41 42
42 // Used for UMA to record whether a gesture was associated with the request. For 43 // Used for UMA to record whether a gesture was associated with the request. For
43 // simplicity not all request types track whether a gesture is associated with 44 // simplicity not all request types track whether a gesture is associated with
44 // it or not, for these types of requests metrics are not recorded. 45 // it or not, for these types of requests metrics are not recorded.
45 enum class PermissionRequestGestureType { 46 enum class PermissionRequestGestureType {
46 UNKNOWN, 47 UNKNOWN,
47 GESTURE, 48 GESTURE,
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 bool persist() const { return persist_; } 122 bool persist() const { return persist_; }
122 123
123 private: 124 private:
124 // Whether or not the response for this prompt should be persisted. 125 // Whether or not the response for this prompt should be persisted.
125 bool persist_; 126 bool persist_;
126 127
127 DISALLOW_COPY_AND_ASSIGN(PermissionRequest); 128 DISALLOW_COPY_AND_ASSIGN(PermissionRequest);
128 }; 129 };
129 130
130 #endif // CHROME_BROWSER_PERMISSIONS_PERMISSION_REQUEST_H_ 131 #endif // CHROME_BROWSER_PERMISSIONS_PERMISSION_REQUEST_H_
OLDNEW
« no previous file with comments | « chrome/browser/permissions/permission_manager.cc ('k') | chrome/browser/permissions/permission_request_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698