| Index: chromeos/dbus/fake_permission_broker_client.h
|
| diff --git a/chromeos/dbus/fake_permission_broker_client.h b/chromeos/dbus/fake_permission_broker_client.h
|
| index 6a1ddee6266ab2f5a9c7210a85a3b711d985499a..b34d5c39a706e57f4f90e12bb175edeabfc8c51d 100644
|
| --- a/chromeos/dbus/fake_permission_broker_client.h
|
| +++ b/chromeos/dbus/fake_permission_broker_client.h
|
| @@ -5,8 +5,10 @@
|
| #ifndef CHROMEOS_DBUS_FAKE_PERMISSION_BROKER_CLIENT_H_
|
| #define CHROMEOS_DBUS_FAKE_PERMISSION_BROKER_CLIENT_H_
|
|
|
| -#include "base/basictypes.h"
|
| +#include <stdint.h>
|
| +
|
| #include "base/compiler_specific.h"
|
| +#include "base/macros.h"
|
| #include "chromeos/dbus/permission_broker_client.h"
|
|
|
| namespace chromeos {
|
| @@ -25,18 +27,18 @@ class CHROMEOS_EXPORT FakePermissionBrokerClient
|
| const ResultCallback& callback) override;
|
| void OpenPath(const std::string& path,
|
| const OpenPathCallback& callback) override;
|
| - void RequestTcpPortAccess(uint16 port,
|
| + void RequestTcpPortAccess(uint16_t port,
|
| const std::string& interface,
|
| const dbus::FileDescriptor& lifeline_fd,
|
| const ResultCallback& callback) override;
|
| - void RequestUdpPortAccess(uint16 port,
|
| + void RequestUdpPortAccess(uint16_t port,
|
| const std::string& interface,
|
| const dbus::FileDescriptor& lifeline_fd,
|
| const ResultCallback& callback) override;
|
| - void ReleaseTcpPort(uint16 port,
|
| + void ReleaseTcpPort(uint16_t port,
|
| const std::string& interface,
|
| const ResultCallback& callback) override;
|
| - void ReleaseUdpPort(uint16 port,
|
| + void ReleaseUdpPort(uint16_t port,
|
| const std::string& interface,
|
| const ResultCallback& callback) override;
|
|
|
|
|