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

Unified Diff: ppapi/cpp/video_encoder.cc

Issue 901733002: Pepper: Make C++ pp::VideoEncoder wrapper compilable on non-C++11 builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months 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 | « ppapi/cpp/video_encoder.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/video_encoder.cc
diff --git a/ppapi/cpp/video_encoder.cc b/ppapi/cpp/video_encoder.cc
index 717b1dd2895c1828b6aba334a80f05894de279cb..ae589aa8dacc51bffe51e00604910ce8198bd193 100644
--- a/ppapi/cpp/video_encoder.cc
+++ b/ppapi/cpp/video_encoder.cc
@@ -36,7 +36,7 @@ VideoEncoder::VideoEncoder(const VideoEncoder& other) : Resource(other) {
}
int32_t VideoEncoder::GetSupportedProfiles(const CompletionCallbackWithOutput<
- std::vector<PP_VideoProfileDescription>>& cc) {
+ std::vector<PP_VideoProfileDescription> >& cc) {
if (has_interface<PPB_VideoEncoder_0_1>()) {
return get_interface<PPB_VideoEncoder_0_1>()->GetSupportedProfiles(
pp_resource(), cc.output(), cc.pp_completion_callback());
« no previous file with comments | « ppapi/cpp/video_encoder.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698