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:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ struct ListTabsReply {
|
||||
}
|
||||
|
||||
#[derive(RustcEncodable)]
|
||||
struct RootActorMsg {
|
||||
pub struct RootActorMsg {
|
||||
from: String,
|
||||
applicationType: String,
|
||||
traits: ActorTraits,
|
||||
|
||||
Reference in New Issue
Block a user