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

Unified Diff: chromeos/dbus/mock_cryptohome_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/lorgnette_manager_client.cc ('k') | chromeos/dbus/mock_permission_broker_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/mock_cryptohome_client.h
diff --git a/chromeos/dbus/mock_cryptohome_client.h b/chromeos/dbus/mock_cryptohome_client.h
index 20ccbb520aac314ea409ca294651b073f4ddb41c..4382d35415a77cdafba11e84d4245bd5622630da 100644
--- a/chromeos/dbus/mock_cryptohome_client.h
+++ b/chromeos/dbus/mock_cryptohome_client.h
@@ -5,6 +5,8 @@
#ifndef CHROMEOS_DBUS_MOCK_CRYPTOHOME_CLIENT_H_
#define CHROMEOS_DBUS_MOCK_CRYPTOHOME_CLIENT_H_
+#include <stdint.h>
+
#include <string>
#include "chromeos/dbus/cryptohome/rpc.pb.h"
@@ -79,11 +81,11 @@ class MockCryptohomeClient : public CryptohomeClient {
const Pkcs11GetTpmTokenInfoCallback& callback));
MOCK_METHOD3(InstallAttributesGet,
bool(const std::string& name,
- std::vector<uint8>* value,
+ std::vector<uint8_t>* value,
bool* successful));
MOCK_METHOD3(InstallAttributesSet,
bool(const std::string& name,
- const std::vector<uint8>& value,
+ const std::vector<uint8_t>& value,
bool* successful));
MOCK_METHOD1(InstallAttributesFinalize, bool(bool* successful));
MOCK_METHOD1(InstallAttributesIsReady,
« no previous file with comments | « chromeos/dbus/lorgnette_manager_client.cc ('k') | chromeos/dbus/mock_permission_broker_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698