 Chromium Code Reviews
 Chromium Code Reviews Issue 1957783002:
  Replicate Content-Security-Policy into remote frame proxies.  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master
    
  
    Issue 1957783002:
  Replicate Content-Security-Policy into remote frame proxies.  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master| OLD | NEW | 
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be | 
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. | 
| 4 | 4 | 
| 5 #include "content/common/frame_replication_state.h" | 5 #include "content/common/frame_replication_state.h" | 
| 6 | |
| 7 #include "content/common/frame_messages.h" | |
| 
alexmos
2016/05/11 19:46:40
Is this necessary?
 
Łukasz Anforowicz
2016/05/11 23:14:48
Ooops - this is a left-over from an earlier draft,
 | |
| 6 #include "third_party/WebKit/public/web/WebSandboxFlags.h" | 8 #include "third_party/WebKit/public/web/WebSandboxFlags.h" | 
| 7 #include "third_party/WebKit/public/web/WebTreeScopeType.h" | 9 #include "third_party/WebKit/public/web/WebTreeScopeType.h" | 
| 8 | 10 | 
| 9 namespace content { | 11 namespace content { | 
| 10 | 12 | 
| 11 FrameReplicationState::FrameReplicationState() | 13 FrameReplicationState::FrameReplicationState() | 
| 12 : sandbox_flags(blink::WebSandboxFlags::None), | 14 : sandbox_flags(blink::WebSandboxFlags::None), | 
| 13 scope(blink::WebTreeScopeType::Document), | 15 scope(blink::WebTreeScopeType::Document), | 
| 14 should_enforce_strict_mixed_content_checking(false), | 16 should_enforce_strict_mixed_content_checking(false), | 
| 15 has_potentially_trustworthy_unique_origin(false) {} | 17 has_potentially_trustworthy_unique_origin(false) {} | 
| (...skipping 15 matching lines...) Expand all Loading... | |
| 31 has_potentially_trustworthy_unique_origin( | 33 has_potentially_trustworthy_unique_origin( | 
| 32 has_potentially_trustworthy_unique_origin) {} | 34 has_potentially_trustworthy_unique_origin) {} | 
| 33 | 35 | 
| 34 FrameReplicationState::FrameReplicationState( | 36 FrameReplicationState::FrameReplicationState( | 
| 35 const FrameReplicationState& other) = default; | 37 const FrameReplicationState& other) = default; | 
| 36 | 38 | 
| 37 FrameReplicationState::~FrameReplicationState() { | 39 FrameReplicationState::~FrameReplicationState() { | 
| 38 } | 40 } | 
| 39 | 41 | 
| 40 } // namespace content | 42 } // namespace content | 
| OLD | NEW |