servo: Merge #9352 - Convert private types to public (from mattkuo:cleanup-private-types); r=nox

fixes #9347

Source-Repo: https://github.com/servo/servo
Source-Revision: 380541bd48bb7ce0b36a8be90f756734e531ca5f
This commit is contained in:
Matthew Kuo
2016-01-18 01:28:01 +05:00
parent ce8cb86d14
commit dbe696dc65
4 changed files with 7 additions and 7 deletions

View File

@@ -31,7 +31,7 @@ pub trait Actor: Any + ActorAsAny {
fn name(&self) -> String;
}
trait ActorAsAny {
pub trait ActorAsAny {
fn actor_as_any(&self) -> &Any;
fn actor_as_any_mut(&mut self) -> &mut Any;
}

View File

@@ -35,7 +35,7 @@ struct ListTabsReply {
}
#[derive(RustcEncodable)]
struct RootActorMsg {
pub struct RootActorMsg {
from: String,
applicationType: String,
traits: ActorTraits,