Remove int/uint from devtools/devtools_traits.

This commit is contained in:
Josh Matthews 2015-04-06 10:11:29 -04:00
parent a277036dd9
commit 6328946434
7 changed files with 28 additions and 29 deletions

View file

@ -47,10 +47,10 @@ struct PageErrorMessage {
errorMessage: String,
sourceName: String,
lineText: String,
lineNumber: uint,
columnNumber: uint,
lineNumber: u32,
columnNumber: u32,
category: String,
timeStamp: uint,
timeStamp: u64,
warning: bool,
error: bool,
exception: bool,
@ -62,7 +62,7 @@ struct PageErrorMessage {
#[allow(dead_code)]
struct LogMessage {
_type: String, //FIXME: should this be __type__ instead?
timeStamp: uint,
timeStamp: u64,
message: String,
}
@ -98,7 +98,7 @@ struct EvaluateJSReply {
from: String,
input: String,
result: Json,
timestamp: uint,
timestamp: u64,
exception: Json,
exceptionMessage: String,
helperResult: Json,