Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Unified Diff: chromeos/dbus/fake_permission_broker_client.h

Issue 1540803002: Switch to standard integer types in chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more includes Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromeos/dbus/fake_peer_daemon_manager_client.h ('k') | chromeos/dbus/fake_permission_broker_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « chromeos/dbus/fake_peer_daemon_manager_client.h ('k') | chromeos/dbus/fake_permission_broker_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698