Skip to content

Commit

Permalink
changed devtools private types to public
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkuo committed Jan 17, 2016
1 parent 5817444 commit 64f5818
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/devtools/actor.rs
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion components/devtools/actors/root.rs
Expand Up @@ -35,7 +35,7 @@ struct ListTabsReply {
}

#[derive(RustcEncodable)]
struct RootActorMsg {
pub struct RootActorMsg {
from: String,
applicationType: String,
traits: ActorTraits,
Expand Down

0 comments on commit 64f5818

Please sign in to comment.