mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
This batch of changes upgrades Servo to work with the Rust upgrade as of
April 10, 2014. The main changes are to privacy, to work around the issues with incorrect bounds on the libstd `Arc<Mutex<T>>`, and the various API changes strewn throughout the libraries.
This commit is contained in:
parent
4942cc76bd
commit
948daf2422
226 changed files with 1478 additions and 1407 deletions
|
@ -33,10 +33,10 @@ enum SandboxAllowance {
|
|||
|
||||
#[deriving(Encodable)]
|
||||
pub struct HTMLIFrameElement {
|
||||
htmlelement: HTMLElement,
|
||||
pub htmlelement: HTMLElement,
|
||||
frame: Untraceable<Option<Url>>,
|
||||
size: Option<IFrameSize>,
|
||||
sandbox: Option<u8>
|
||||
pub size: Option<IFrameSize>,
|
||||
pub sandbox: Option<u8>
|
||||
}
|
||||
|
||||
impl HTMLIFrameElementDerived for EventTarget {
|
||||
|
@ -50,8 +50,8 @@ impl HTMLIFrameElementDerived for EventTarget {
|
|||
|
||||
#[deriving(Encodable)]
|
||||
pub struct IFrameSize {
|
||||
pipeline_id: PipelineId,
|
||||
subpage_id: SubpageId,
|
||||
pub pipeline_id: PipelineId,
|
||||
pub subpage_id: SubpageId,
|
||||
}
|
||||
|
||||
impl HTMLIFrameElement {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue