diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-29 10:46:47 +0100 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-11-02 12:02:10 +0000 |
commit | 99677208ff3b216fdfec551fbe548da5520cd6fb (patch) | |
tree | 476a4865c10320249360e859d8fdd3e01833b03a /chromium/content/browser/utility_process_host.h | |
parent | c30a6232df03e1efbd9f3b226777b07e087a1122 (diff) | |
download | qtwebengine-chromium-99677208ff3b216fdfec551fbe548da5520cd6fb.tar.gz |
BASELINE: Update Chromium to 86.0.4240.124
Change-Id: Ide0ff151e94cd665ae6521a446995d34a9d1d644
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/content/browser/utility_process_host.h')
-rw-r--r-- | chromium/content/browser/utility_process_host.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chromium/content/browser/utility_process_host.h b/chromium/content/browser/utility_process_host.h index 00add833244..cbc920a042c 100644 --- a/chromium/content/browser/utility_process_host.h +++ b/chromium/content/browser/utility_process_host.h @@ -23,10 +23,10 @@ #include "mojo/public/cpp/bindings/generic_pending_receiver.h" #include "mojo/public/cpp/bindings/pending_receiver.h" #include "mojo/public/cpp/system/message_pipe.h" +#include "sandbox/policy/sandbox_type.h" #include "services/service_manager/public/cpp/identity.h" #include "services/service_manager/public/cpp/service.h" #include "services/service_manager/public/mojom/service.mojom.h" -#include "services/service_manager/sandbox/sandbox_type.h" namespace base { class Thread; @@ -79,9 +79,9 @@ class CONTENT_EXPORT UtilityProcessHost // Makes the process run with a specific sandbox type, or unsandboxed if // SandboxType::kNoSandbox is specified. - void SetSandboxType(service_manager::SandboxType sandbox_type); + void SetSandboxType(sandbox::policy::SandboxType sandbox_type); - service_manager::SandboxType sandbox_type() const { return sandbox_type_; } + sandbox::policy::SandboxType sandbox_type() const { return sandbox_type_; } // Returns information about the utility child process. const ChildProcessData& GetData(); @@ -135,7 +135,7 @@ class CONTENT_EXPORT UtilityProcessHost void BindHostReceiver(mojo::GenericPendingReceiver receiver) override; // Launch the child process with switches that will setup this sandbox type. - service_manager::SandboxType sandbox_type_; + sandbox::policy::SandboxType sandbox_type_; // ChildProcessHost flags to use when starting the child process. int child_flags_; |