Use suffixed {uint,int}{8,16,32,64}_t types.

Removes the use of uint8, etc. in favor of uint8_t.

BUG=webrtc:5024
R=henrik.lundin@webrtc.org, henrikg@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org

Review URL: https://codereview.webrtc.org/1362503003 .

Cr-Commit-Position: refs/heads/master@{#10196}
This commit is contained in:
Peter Boström
2015-10-07 12:23:21 +02:00
parent 8d15bd6dab
commit 0c4e06b4c6
339 changed files with 4023 additions and 3764 deletions

View File

@ -14,7 +14,7 @@
namespace rtc {
int32 Task::unique_id_seed_ = 0;
int32_t Task::unique_id_seed_ = 0;
Task::Task(TaskParent *parent)
: TaskParent(this, parent),
@ -48,11 +48,11 @@ Task::~Task() {
}
}
int64 Task::CurrentTime() {
int64_t Task::CurrentTime() {
return GetRunner()->CurrentTime();
}
int64 Task::ElapsedTime() {
int64_t Task::ElapsedTime() {
return CurrentTime() - start_time_;
}
@ -240,7 +240,7 @@ bool Task::TimedOut() {
}
void Task::ResetTimeout() {
int64 previous_timeout_time = timeout_time_;
int64_t previous_timeout_time = timeout_time_;
bool timeout_allowed = (state_ != STATE_INIT)
&& (state_ != STATE_DONE)
&& (state_ != STATE_ERROR);
@ -254,7 +254,7 @@ void Task::ResetTimeout() {
}
void Task::ClearTimeout() {
int64 previous_timeout_time = timeout_time_;
int64_t previous_timeout_time = timeout_time_;
timeout_time_ = 0;
GetRunner()->UpdateTaskTimeout(this, previous_timeout_time);
}