blob: ee90c8f4596bb6fab22d87ffa980106125fd5246 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/idle/idle_detection_permission_context.h"
#include "base/logging.h"
#include "chrome/browser/content_settings/tab_specific_content_settings.h"
#include "chrome/browser/permissions/permission_request_id.h"
#include "chrome/browser/profiles/profile.h"
#include "url/gurl.h"
IdleDetectionPermissionContext::IdleDetectionPermissionContext(Profile* profile)
: PermissionContextBase(profile,
CONTENT_SETTINGS_TYPE_IDLE_DETECTION,
blink::mojom::FeaturePolicyFeature::kNotFound) {}
IdleDetectionPermissionContext::~IdleDetectionPermissionContext() = default;
void IdleDetectionPermissionContext::UpdateTabContext(
const PermissionRequestID& id,
const GURL& requesting_frame,
bool allowed) {
TabSpecificContentSettings* content_settings =
TabSpecificContentSettings::GetForFrame(id.render_process_id(),
id.render_frame_id());
if (!content_settings)
return;
if (allowed)
content_settings->OnContentAllowed(CONTENT_SETTINGS_TYPE_IDLE_DETECTION);
else
content_settings->OnContentBlocked(CONTENT_SETTINGS_TYPE_IDLE_DETECTION);
}
ContentSetting IdleDetectionPermissionContext::GetPermissionStatusInternal(
content::RenderFrameHost* render_frame_host,
const GURL& requesting_origin,
const GURL& embedding_origin) const {
return CONTENT_SETTING_ALLOW;
}
bool IdleDetectionPermissionContext::IsRestrictedToSecureOrigins() const {
return true;
}