blob: f768373d28f64ada8b0c626e817f02637cbf3fc3 [file] [log] [blame]
// Copyright 2017 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 "content/browser/service_worker/service_worker_content_settings_proxy_impl.h"
#include <utility>
#include <vector>
#include "base/threading/thread.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/content_browser_client.h"
#include "content/public/browser/global_routing_id.h"
#include "content/public/common/content_client.h"
#include "mojo/public/cpp/bindings/strong_binding.h"
namespace content {
ServiceWorkerContentSettingsProxyImpl::ServiceWorkerContentSettingsProxyImpl(
const GURL& script_url,
base::WeakPtr<ServiceWorkerContextCore> context,
blink::mojom::WorkerContentSettingsProxyRequest request)
: origin_(url::Origin::Create(script_url)),
context_(context),
binding_(this, std::move(request)) {}
ServiceWorkerContentSettingsProxyImpl::
~ServiceWorkerContentSettingsProxyImpl() = default;
void ServiceWorkerContentSettingsProxyImpl::AllowIndexedDB(
AllowIndexedDBCallback callback) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
// May be shutting down.
if (!context_ || !context_->wrapper()->resource_context()) {
std::move(callback).Run(false);
return;
}
if (origin_.opaque()) {
std::move(callback).Run(false);
return;
}
// |render_frames| is used to show UI for the frames affected by the
// content setting. However, service worker is not necessarily associated
// with frames or making the request on behalf of frames,
// so just pass an empty |render_frames|.
std::vector<GlobalFrameRoutingId> render_frames;
std::move(callback).Run(GetContentClient()->browser()->AllowWorkerIndexedDB(
origin_.GetURL(), context_->wrapper()->resource_context(),
render_frames));
}
void ServiceWorkerContentSettingsProxyImpl::RequestFileSystemAccessSync(
RequestFileSystemAccessSyncCallback callback) {
mojo::ReportBadMessage(
"The FileSystem API is not exposed to service workers "
"but somehow a service worker requested access.");
}
} // namespace content