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

Side by Side 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 typo: int32->int32_t 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ 5 #ifndef CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_
6 #define CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ 6 #define CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "ppapi/thunk/resource_creation_api.h" 10 #include "ppapi/thunk/resource_creation_api.h"
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 PP_Resource share_context, 51 PP_Resource share_context,
52 const int32_t* attrib_list) override; 52 const int32_t* attrib_list) override;
53 PP_Resource CreateGraphics3DRaw( 53 PP_Resource CreateGraphics3DRaw(
54 PP_Instance instance, 54 PP_Instance instance,
55 PP_Resource share_context, 55 PP_Resource share_context,
56 const int32_t* attrib_list, 56 const int32_t* attrib_list,
57 gpu::Capabilities* capabilities, 57 gpu::Capabilities* capabilities,
58 base::SharedMemoryHandle* shared_state) override; 58 base::SharedMemoryHandle* shared_state) override;
59 PP_Resource CreateHostResolver(PP_Instance instance) override; 59 PP_Resource CreateHostResolver(PP_Instance instance) override;
60 PP_Resource CreateHostResolverPrivate(PP_Instance instance) override; 60 PP_Resource CreateHostResolverPrivate(PP_Instance instance) override;
61 PP_Resource CreateImageCapturePrivate(PP_Instance instance) override;
61 PP_Resource CreateImageData(PP_Instance instance, 62 PP_Resource CreateImageData(PP_Instance instance,
62 PP_ImageDataFormat format, 63 PP_ImageDataFormat format,
63 const PP_Size* size, 64 const PP_Size* size,
64 PP_Bool init_to_zero) override; 65 PP_Bool init_to_zero) override;
65 PP_Resource CreateImageDataSimple(PP_Instance instance, 66 PP_Resource CreateImageDataSimple(PP_Instance instance,
66 PP_ImageDataFormat format, 67 PP_ImageDataFormat format,
67 const PP_Size* size, 68 const PP_Size* size,
68 PP_Bool init_to_zero) override; 69 PP_Bool init_to_zero) override;
69 PP_Resource CreateIMEInputEvent(PP_Instance instance, 70 PP_Resource CreateIMEInputEvent(PP_Instance instance,
70 PP_InputEvent_Type type, 71 PP_InputEvent_Type type,
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 PP_Bool scroll_by_page) override; 138 PP_Bool scroll_by_page) override;
138 PP_Resource CreateX509CertificatePrivate(PP_Instance instance) override; 139 PP_Resource CreateX509CertificatePrivate(PP_Instance instance) override;
139 140
140 private: 141 private:
141 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); 142 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl);
142 }; 143 };
143 144
144 } // namespace content 145 } // namespace content
145 146
146 #endif // CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ 147 #endif // CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/pepper/plugin_module.cc ('k') | content/renderer/pepper/resource_creation_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698