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

Unified Diff: media/cast/common/transport_encryption_handler.h

Issue 1534273002: Switch to standard integer types in media/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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
Index: media/cast/common/transport_encryption_handler.h
diff --git a/media/cast/common/transport_encryption_handler.h b/media/cast/common/transport_encryption_handler.h
index d71dc49c35ebb5e75c5df1edf9b539a0292ad64c..d89a1b878af4f43ffdd0eccd614c98d0d7bf9e73 100644
--- a/media/cast/common/transport_encryption_handler.h
+++ b/media/cast/common/transport_encryption_handler.h
@@ -8,7 +8,6 @@
// Helper class to handle encryption for the Cast Transport library.
#include <string>
-#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "base/strings/string_piece.h"
#include "base/threading/non_thread_safe.h"
@@ -28,11 +27,11 @@ class TransportEncryptionHandler : public base::NonThreadSafe {
bool Initialize(const std::string& aes_key, const std::string& aes_iv_mask);
- bool Encrypt(uint32 frame_id,
+ bool Encrypt(uint32_t frame_id,
const base::StringPiece& data,
std::string* encrypted_data);
- bool Decrypt(uint32 frame_id,
+ bool Decrypt(uint32_t frame_id,
const base::StringPiece& ciphertext,
std::string* plaintext);

Powered by Google App Engine
This is Rietveld 408576698