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

Unified Diff: content/renderer/pepper/pepper_in_process_resource_creation.cc

Issue 11274036: Refactor video capture to new design (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 2 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
Index: content/renderer/pepper/pepper_in_process_resource_creation.cc
diff --git a/content/renderer/pepper/pepper_in_process_resource_creation.cc b/content/renderer/pepper/pepper_in_process_resource_creation.cc
index 1854e9eeaeb434a522ae62d3566b092351fd7a13..3f472dbed582a3233fb473cf023f537d8abef6af 100644
--- a/content/renderer/pepper/pepper_in_process_resource_creation.cc
+++ b/content/renderer/pepper/pepper_in_process_resource_creation.cc
@@ -17,6 +17,7 @@
#include "ppapi/proxy/ppapi_messages.h"
#include "ppapi/proxy/printing_resource.h"
#include "ppapi/proxy/url_request_info_resource.h"
+#include "ppapi/proxy/video_capture_resource.h"
#include "ppapi/proxy/websocket_resource.h"
#include "ppapi/shared_impl/ppapi_globals.h"
#include "ppapi/shared_impl/ppapi_permissions.h"
@@ -72,4 +73,9 @@ PP_Resource PepperInProcessResourceCreation::CreateWebSocket(
instance))->GetReference();
}
+PP_Resource PepperInProcessResourceCreation::CreateVideoCapture(
+ PP_Instance instance) {
+ return 0; // VideoCapture is not supported in process now.
yzshen1 2012/10/29 18:34:23 We add those non-supported ones to resource_creati
victorhsieh 2012/10/30 09:43:28 Done.
+}
+
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698