| Index: net/spdy/spdy_session_test_util.h
|
| diff --git a/net/spdy/spdy_session_test_util.h b/net/spdy/spdy_session_test_util.h
|
| index dcb173396329e6330814747b2533e2ee44f90c93..819b15c8da03ae3d6dea6c71c8f12a636305ba1c 100644
|
| --- a/net/spdy/spdy_session_test_util.h
|
| +++ b/net/spdy/spdy_session_test_util.h
|
| @@ -5,9 +5,10 @@
|
| #ifndef NET_SPDY_SPDY_SESSION_TEST_UTIL_H_
|
| #define NET_SPDY_SPDY_SESSION_TEST_UTIL_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/message_loop/message_loop.h"
|
| #include "base/pending_task.h"
|
|
|
| @@ -33,10 +34,10 @@ class SpdySessionTestTaskObserver : public base::MessageLoop::TaskObserver {
|
| void DidProcessTask(const base::PendingTask& pending_task) override;
|
|
|
| // Returns the number of tasks posted by the given function and file.
|
| - uint16 executed_count() const { return executed_count_; }
|
| + uint16_t executed_count() const { return executed_count_; }
|
|
|
| private:
|
| - uint16 executed_count_;
|
| + uint16_t executed_count_;
|
| std::string file_name_;
|
| std::string function_name_;
|
| };
|
|
|