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

Unified Diff: content/renderer/pepper/resource_creation_impl.h

Issue 848863002: PPAPI: implement GetSupportedPreviewSizes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile error on Linux build Created 5 years, 11 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/resource_creation_impl.h
diff --git a/content/renderer/pepper/resource_creation_impl.h b/content/renderer/pepper/resource_creation_impl.h
index 52c44fc06f14f08d0e56e8ee9a1bde77dbbe0e08..4a1d151cb83f5f16edb1866c3e5b9e47416292a8 100644
--- a/content/renderer/pepper/resource_creation_impl.h
+++ b/content/renderer/pepper/resource_creation_impl.h
@@ -36,6 +36,8 @@ class ResourceCreationImpl : public ppapi::thunk::ResourceCreationAPI {
PP_AudioSampleRate sample_rate,
uint32_t sample_frame_count) override;
PP_Resource CreateAudioInput(PP_Instance instance) override;
+ PP_Resource CreateCameraCapabilitiesPrivate(
+ PP_Instance instance) override;
PP_Resource CreateCompositor(PP_Instance instance) override;
PP_Resource CreateBroker(PP_Instance instance) override;
PP_Resource CreateBuffer(PP_Instance instance, uint32_t size) override;
@@ -58,6 +60,9 @@ class ResourceCreationImpl : public ppapi::thunk::ResourceCreationAPI {
base::SharedMemoryHandle* shared_state) override;
PP_Resource CreateHostResolver(PP_Instance instance) override;
PP_Resource CreateHostResolverPrivate(PP_Instance instance) override;
+ PP_Resource CreateImageCaptureConfigPrivate(
wuchengli 2015/01/19 14:05:03 Is it possible not to have CaptureConfig in this C
Justin Chuang 2015/01/26 15:00:50 Will update to this CL later.
+ PP_Instance instance) override;
+ PP_Resource CreateImageCapturePrivate(PP_Instance instance) override;
PP_Resource CreateImageData(PP_Instance instance,
PP_ImageDataFormat format,
const PP_Size* size,

Powered by Google App Engine
This is Rietveld 408576698