Index: ppapi/proxy/image_capture_resource.cc |
diff --git a/ppapi/proxy/image_capture_resource.cc b/ppapi/proxy/image_capture_resource.cc |
index e010334a54272a51cbbb725c8e7b54bd6f2e8ea8..7545198083c04e6d3e3d0237269ab764a78cf4cd 100644 |
--- a/ppapi/proxy/image_capture_resource.cc |
+++ b/ppapi/proxy/image_capture_resource.cc |
@@ -70,18 +70,6 @@ void ImageCaptureResource::Close() { |
open_state_ = CLOSED; |
} |
-int32_t ImageCaptureResource::SetConfig( |
- PP_Resource config, |
- scoped_refptr<TrackedCallback> callback) { |
- return PP_ERROR_NOTSUPPORTED; |
-} |
- |
-int32_t ImageCaptureResource::GetConfig( |
- PP_Resource* config, |
- scoped_refptr<TrackedCallback> callback) { |
- return PP_ERROR_NOTSUPPORTED; |
-} |
- |
int32_t ImageCaptureResource::GetCameraCapabilities( |
PP_Resource* capabilities, |
scoped_refptr<TrackedCallback> callback) { |
@@ -106,14 +94,6 @@ int32_t ImageCaptureResource::GetCameraCapabilities( |
return PP_OK_COMPLETIONPENDING; |
} |
-int32_t ImageCaptureResource::CaptureStillImage( |
- PPB_ImageCapture_Private_ShutterCallback shutter_callback, |
- PPB_ImageCapture_Private_PreviewCallback preview_callback, |
- PPB_ImageCapture_Private_JpegCallback jpeg_callback, |
- int64_t* sequence_id) { |
- return PP_ERROR_NOTSUPPORTED; |
-} |
- |
void ImageCaptureResource::OnPluginMsgOpenReply( |
const ResourceMessageReplyParams& params) { |
if (open_state_ == BEFORE_OPEN && params.result() == PP_OK) |