| Index: net/http/http_server_properties_impl.h
|
| diff --git a/net/http/http_server_properties_impl.h b/net/http/http_server_properties_impl.h
|
| index 093f5d20ffcafeee0a76125a8091f5ab8316b46a..a169362a81fb5b3d5a34001f3465305a8bcf9ef0 100644
|
| --- a/net/http/http_server_properties_impl.h
|
| +++ b/net/http/http_server_properties_impl.h
|
| @@ -5,14 +5,17 @@
|
| #ifndef NET_HTTP_HTTP_SERVER_PROPERTIES_IMPL_H_
|
| #define NET_HTTP_HTTP_SERVER_PROPERTIES_IMPL_H_
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include <deque>
|
| #include <map>
|
| #include <set>
|
| #include <string>
|
| #include <vector>
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/containers/hash_tables.h"
|
| +#include "base/macros.h"
|
| #include "base/threading/non_thread_safe.h"
|
| #include "base/values.h"
|
| #include "net/base/host_port_pair.h"
|
| @@ -116,7 +119,7 @@ class NET_EXPORT HttpServerPropertiesImpl
|
| bool SetSpdySetting(const HostPortPair& host_port_pair,
|
| SpdySettingsIds id,
|
| SpdySettingsFlags flags,
|
| - uint32 value) override;
|
| + uint32_t value) override;
|
| void ClearSpdySettings(const HostPortPair& host_port_pair) override;
|
| void ClearAllSpdySettings() override;
|
| const SpdySettingsMap& spdy_settings_map() const override;
|
|
|