
This removes almost all remaining usage of Connector from child processes, instead preferring use of ChildProcessHost.BindHostReceiver to acquire process-scoped interfaces from the browser. The one remaining use case after this CL is for the Device Service's PowerMonitor API. This is left as a separate change because it requires substantial additional support code for testing. Bug: 977637 Change-Id: I679c6d7f5ec01d1bc1bb6852e0f79a3f1650df34 Tbr: penghuang@chromium.org Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1815731 Commit-Queue: Ken Rockot <rockot@google.com> Reviewed-by: Sadrul Chowdhury <sadrul@chromium.org> Reviewed-by: Avi Drissman <avi@chromium.org> Reviewed-by: Zhenyao Mo <zmo@chromium.org> Reviewed-by: Lei Zhang <thestig@chromium.org> Cr-Commit-Position: refs/heads/master@{#700317}
42 lines
1.4 KiB
C++
42 lines
1.4 KiB
C++
// 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.
|
|
|
|
#ifndef CONTENT_BROWSER_SANDBOX_SUPPORT_MAC_IMPL_H_
|
|
#define CONTENT_BROWSER_SANDBOX_SUPPORT_MAC_IMPL_H_
|
|
|
|
#include "base/macros.h"
|
|
#include "content/common/sandbox_support_mac.mojom.h"
|
|
#include "mojo/public/cpp/bindings/pending_receiver.h"
|
|
#include "mojo/public/cpp/bindings/receiver_set.h"
|
|
|
|
namespace content {
|
|
|
|
// Performs privileged operations on behalf of sandboxed child processes.
|
|
// This is used to implement the blink::WebSandboxSupport interface in the
|
|
// renderer. However all child process types have access to this interface.
|
|
// This class lives on the IO thread and is owned by the Mojo interface
|
|
// registry.
|
|
class SandboxSupportMacImpl : public mojom::SandboxSupportMac {
|
|
public:
|
|
SandboxSupportMacImpl();
|
|
~SandboxSupportMacImpl() override;
|
|
|
|
void BindReceiver(mojo::PendingReceiver<mojom::SandboxSupportMac> receiver);
|
|
|
|
// content::mojom::SandboxSupportMac:
|
|
void GetSystemColors(GetSystemColorsCallback callback) override;
|
|
void LoadFont(const base::string16& font_name,
|
|
float font_point_size,
|
|
LoadFontCallback callback) override;
|
|
|
|
private:
|
|
mojo::ReceiverSet<mojom::SandboxSupportMac> receivers_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(SandboxSupportMacImpl);
|
|
};
|
|
|
|
} // namespace content
|
|
|
|
#endif // CONTENT_BROWSER_SANDBOX_SUPPORT_MAC_IMPL_H_
|