| Index: content/common/frame_replication_state.h
|
| diff --git a/content/common/frame_replication_state.h b/content/common/frame_replication_state.h
|
| index 736d052cc5aa412add256bf339b4bfe1ce8c99e9..46bf2f4fcb4f18befbf744dcf2c76ba3315d3ceb 100644
|
| --- a/content/common/frame_replication_state.h
|
| +++ b/content/common/frame_replication_state.h
|
| @@ -33,6 +33,14 @@ enum class SandboxFlags : int {
|
| ALL = -1
|
| };
|
|
|
| +inline SandboxFlags operator&(SandboxFlags a, SandboxFlags b) {
|
| + return static_cast<SandboxFlags>(static_cast<int>(a) & static_cast<int>(b));
|
| +}
|
| +
|
| +inline SandboxFlags operator~(SandboxFlags flags) {
|
| + return static_cast<SandboxFlags>(~static_cast<int>(flags));
|
| +}
|
| +
|
| // This structure holds information that needs to be replicated between a
|
| // RenderFrame and any of its associated RenderFrameProxies.
|
| struct CONTENT_EXPORT FrameReplicationState {
|
|
|