2016-01-23 16:29:47 +03:00
|
|
|
// Copyright (c) 2016 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef ATOM_BROWSER_WEB_CONTENTS_PERMISSION_HELPER_H_
|
|
|
|
#define ATOM_BROWSER_WEB_CONTENTS_PERMISSION_HELPER_H_
|
|
|
|
|
2016-01-30 14:19:18 +03:00
|
|
|
#include "content/public/browser/permission_type.h"
|
2016-01-23 16:29:47 +03:00
|
|
|
#include "content/public/browser/web_contents_user_data.h"
|
|
|
|
#include "content/public/common/media_stream_request.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
// Applies the permission requested for WebContents.
|
|
|
|
class WebContentsPermissionHelper
|
|
|
|
: public content::WebContentsUserData<WebContentsPermissionHelper> {
|
|
|
|
public:
|
|
|
|
~WebContentsPermissionHelper() override;
|
|
|
|
|
2016-02-01 12:43:49 +03:00
|
|
|
enum class PermissionType {
|
|
|
|
POINTER_LOCK = static_cast<int>(content::PermissionType::NUM) + 1,
|
|
|
|
FULLSCREEN
|
|
|
|
};
|
|
|
|
|
2016-02-01 13:03:38 +03:00
|
|
|
void RequestFullscreenPermission(
|
|
|
|
const base::Callback<void(bool)>& callback);
|
2016-01-23 16:29:47 +03:00
|
|
|
void RequestMediaAccessPermission(
|
|
|
|
const content::MediaStreamRequest& request,
|
|
|
|
const content::MediaResponseCallback& callback);
|
2016-01-25 19:37:15 +03:00
|
|
|
void RequestWebNotificationPermission(
|
|
|
|
const base::Callback<void(bool)>& callback);
|
2016-02-01 12:43:49 +03:00
|
|
|
void RequestPointerLockPermission(bool user_gesture);
|
2016-01-23 16:29:47 +03:00
|
|
|
|
|
|
|
private:
|
2016-01-30 14:19:18 +03:00
|
|
|
explicit WebContentsPermissionHelper(content::WebContents* web_contents);
|
2016-01-23 16:29:47 +03:00
|
|
|
friend class content::WebContentsUserData<WebContentsPermissionHelper>;
|
|
|
|
|
2016-01-30 14:19:18 +03:00
|
|
|
void RequestPermission(
|
|
|
|
content::PermissionType permission,
|
2016-02-01 12:43:49 +03:00
|
|
|
const base::Callback<void(bool)>& callback,
|
|
|
|
bool user_gesture = false);
|
2016-01-23 16:29:47 +03:00
|
|
|
|
2016-01-30 14:19:18 +03:00
|
|
|
content::WebContents* web_contents_;
|
2016-01-23 16:29:47 +03:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(WebContentsPermissionHelper);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
#endif // ATOM_BROWSER_WEB_CONTENTS_PERMISSION_HELPER_H_
|