diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-04-05 17:41:11 +0530 |
---|---|---|
committer | bors-servo <lbergstrom+bors@mozilla.com> | 2016-04-05 17:41:11 +0530 |
commit | d1e8b79583a6d9ff5a0860307d55b72b7177f77a (patch) | |
tree | 37381f215d3252183cf29c58bb537a2533c9ffb7 /components/script_traits/lib.rs | |
parent | 17ffc6cf71278813885474b0135e268ac0eda081 (diff) | |
parent | af64a888e6e1f1b1aacf03dc44cec773f9e2c05d (diff) | |
download | servo-d1e8b79583a6d9ff5a0860307d55b72b7177f77a.tar.gz servo-d1e8b79583a6d9ff5a0860307d55b72b7177f77a.zip |
Auto merge of #10399 - jdm:pb, r=jdm
Private browsing - Initial steps
Rebase of #10160.
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10399)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script_traits/lib.rs')
-rw-r--r-- | components/script_traits/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script_traits/lib.rs b/components/script_traits/lib.rs index e61c83b4e6b..ac3632c6a08 100644 --- a/components/script_traits/lib.rs +++ b/components/script_traits/lib.rs @@ -402,6 +402,8 @@ pub struct IFrameLoadInfo { pub new_pipeline_id: PipelineId, /// Sandbox type of this iframe pub sandbox: IFrameSandboxState, + /// Whether this iframe should be considered private + pub is_private: bool, } // https://developer.mozilla.org/en-US/docs/Web/API/Using_the_Browser_API#Events |