
Rename this file and related interfaces as they will support some non-mac use-cases. A following CL will use the same mojom interface to proxy some locale related system calls on Windows. This CL should cause no functional changes. Bug: 40408399 Change-Id: Ied9d4fbd851b4822c90d51d831f71bb0b47e7558 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6102591 Commit-Queue: Alex Gough <ajgo@chromium.org> Reviewed-by: Avi Drissman <avi@chromium.org> Cr-Commit-Position: refs/heads/main@{#1400636}
32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
// Copyright 2018 The Chromium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "base/functional/bind.h"
|
|
#import "content/browser/sandbox_support_impl.h"
|
|
#import "content/browser/theme_helper_mac.h"
|
|
#include "content/public/browser/browser_task_traits.h"
|
|
#include "content/public/browser/browser_thread.h"
|
|
|
|
namespace content {
|
|
|
|
SandboxSupportImpl::SandboxSupportImpl() = default;
|
|
|
|
SandboxSupportImpl::~SandboxSupportImpl() = default;
|
|
|
|
void SandboxSupportImpl::BindReceiver(
|
|
mojo::PendingReceiver<mojom::SandboxSupport> receiver) {
|
|
receivers_.Add(this, std::move(receiver));
|
|
}
|
|
|
|
void SandboxSupportImpl::GetSystemColors(GetSystemColorsCallback callback) {
|
|
auto task_runner = GetUIThreadTaskRunner({});
|
|
task_runner->PostTaskAndReplyWithResult(
|
|
FROM_HERE,
|
|
base::BindOnce(&ThemeHelperMac::DuplicateReadOnlyColorMapRegion,
|
|
base::Unretained(ThemeHelperMac::GetInstance())),
|
|
std::move(callback));
|
|
}
|
|
|
|
} // namespace content
|