New issue
Advanced search Search tips

Issue 843608 link

Starred by 3 users

Issue metadata

Status: Untriaged
Owner: ----
Cc:
Components:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 3
Type: Bug



Sign in to add a comment

Get rid of duplicate renderer/core/frame/sandbox_flags.h

Project Member Reported by mustaq@chromium.org, May 16 2018

Issue description

We have the same set of bit-flags defined twice:
- public/common/frame/sandbox_flags.h (enum class WebSandboxFlags: int)
- renderer/core/frame/sandbox_flags.h (enum SandboxFlag)

We should get rid of the duplicate here, don't need both.  The second one is older and not typesafe, so we should get rid of this.

Should be doable by search/replace:
kSandboxNone => static_cast<int>(WebSandboxFlags::kNone)
etc.

 

Sign in to add a comment