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

Side by Side Diff: chrome/browser/sensor/sensor_permission_infobar_delegate_android.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
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_SENSOR_SENSOR_PERMISSION_INFOBAR_DELEGATE_ANDROID_H_
6 #define CHROME_BROWSER_SENSOR_SENSOR_PERMISSION_INFOBAR_DELEGATE_ANDROID_H_
7
8 #include <string>
9
10 #include "base/macros.h"
11 #include "chrome/browser/permissions/permission_infobar_delegate.h"
12
13 // SensorPermissionInfoBarDelegateAndroids are created by the
14 // SensorPermissionContext to control the display and handling of Sensor
15 // permission
16 // infobars to the user.
17 class SensorPermissionInfoBarDelegateAndroid
18 : public PermissionInfoBarDelegate {
19 public:
20 SensorPermissionInfoBarDelegateAndroid(const GURL& requesting_frame,
21 bool user_gesture,
22 Profile* profile,
23 const PermissionSetCallback& callback);
24
25 private:
26 ~SensorPermissionInfoBarDelegateAndroid() override;
27
28 // ConfirmInfoBarDelegate:
29 infobars::InfoBarDelegate::InfoBarIdentifier GetIdentifier() const override;
30 int GetIconId() const override;
31 int GetMessageResourceId() const override;
32
33 DISALLOW_COPY_AND_ASSIGN(SensorPermissionInfoBarDelegateAndroid);
34 };
35
36 #endif // CHROME_BROWSER_SENSOR_SENSOR_PERMISSION_INFOBAR_DELEGATE_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698