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

Unified Diff: webrtc/base/base64.h

Issue 2539153002: Add vector<uint8_t> to Base64 decoded data types. (Closed)
Patch Set: Resolve template usage style nits. Created 4 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 | « no previous file | webrtc/base/base64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/base64.h
diff --git a/webrtc/base/base64.h b/webrtc/base/base64.h
index d5a7dd84c9d0130f33c05137a6f941c66c082288..4e646dcd4c6306a2695cc9c9525c4e0a36580ec3 100644
--- a/webrtc/base/base64.h
+++ b/webrtc/base/base64.h
@@ -63,6 +63,11 @@ public:
std::string* result, size_t* data_used);
static bool DecodeFromArray(const char* data, size_t len, DecodeFlags flags,
std::vector<char>* result, size_t* data_used);
+ static bool DecodeFromArray(const char* data,
+ size_t len,
+ DecodeFlags flags,
+ std::vector<uint8_t>* result,
+ size_t* data_used);
// Convenience Methods
static inline std::string Encode(const std::string& data) {
« no previous file with comments | « no previous file | webrtc/base/base64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698