CSC/ECE 517 Spring 2016/Implement private browsing: Difference between revisions
Jump to navigation
Jump to search
(→Step 1) |
|||
Line 17: | Line 17: | ||
We have created an enum that holds an isPrivate message containing pipelineId and sender as attributes | We have created an enum that holds an isPrivate message containing pipelineId and sender as attributes | ||
[[File: Selection_003.png ]] | |||
The below member has been added to the pipeline struct to check if it's private | |||
[[File: Selection_003.png ]] | [[File: Selection_003.png ]] |
Revision as of 01:01, 24 March 2016
Implementation
The following steps were followed to meet the project requirements as per this [1].
Step 1
As required we have added the is_private member to the struct IFrameLoadInfo to check if it's a private iframe or not
We are working on implementing the function to set this member based on the mozprivatebrowsing attribute. We are in touch with Josh regarding the same as currently there is no mozprivatebrowsing attribute in the servo project and hence we are trying to understand how it can be implemented. We have written a basic stub for the same which is as below.
Step 2
We have created an enum that holds an isPrivate message containing pipelineId and sender as attributes
The below member has been added to the pipeline struct to check if it's private