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

Side by Side Diff: mojo/examples/pepper_container_app/resource_creation_impl.h

Issue 263893005: Rename some PPB_VideoDecoder_Dev implementation types. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rename resource creation API method CreateVideoDecoder (add Dev). Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 MOJO_EXAMPLES_PEPPER_CONTAINER_APP_RESOURCE_CREATION_IMPL_H_ 5 #ifndef MOJO_EXAMPLES_PEPPER_CONTAINER_APP_RESOURCE_CREATION_IMPL_H_
6 #define MOJO_EXAMPLES_PEPPER_CONTAINER_APP_RESOURCE_CREATION_IMPL_H_ 6 #define MOJO_EXAMPLES_PEPPER_CONTAINER_APP_RESOURCE_CREATION_IMPL_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 PP_PrivateFontCharset charset) OVERRIDE; 151 PP_PrivateFontCharset charset) OVERRIDE;
152 virtual PP_Resource CreateFlashMenu(PP_Instance instance, 152 virtual PP_Resource CreateFlashMenu(PP_Instance instance,
153 const PP_Flash_Menu* menu_data) OVERRIDE; 153 const PP_Flash_Menu* menu_data) OVERRIDE;
154 virtual PP_Resource CreateFlashMessageLoop(PP_Instance instance) OVERRIDE; 154 virtual PP_Resource CreateFlashMessageLoop(PP_Instance instance) OVERRIDE;
155 virtual PP_Resource CreatePlatformVerificationPrivate( 155 virtual PP_Resource CreatePlatformVerificationPrivate(
156 PP_Instance instance) OVERRIDE; 156 PP_Instance instance) OVERRIDE;
157 virtual PP_Resource CreateScrollbar(PP_Instance instance, 157 virtual PP_Resource CreateScrollbar(PP_Instance instance,
158 PP_Bool vertical) OVERRIDE; 158 PP_Bool vertical) OVERRIDE;
159 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; 159 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE;
160 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; 160 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE;
161 virtual PP_Resource CreateVideoDecoder( 161 virtual PP_Resource CreateVideoDecoderDev(
162 PP_Instance instance, 162 PP_Instance instance,
163 PP_Resource context3d_id, 163 PP_Resource context3d_id,
164 PP_VideoDecoder_Profile profile) OVERRIDE; 164 PP_VideoDecoder_Profile profile) OVERRIDE;
165 #endif // !defined(OS_NACL) 165 #endif // !defined(OS_NACL)
166 166
167 private: 167 private:
168 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); 168 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl);
169 }; 169 };
170 170
171 } // namespace examples 171 } // namespace examples
172 } // namespace mojo 172 } // namespace mojo
173 173
174 #endif // MOJO_EXAMPLES_PEPPER_CONTAINER_APP_RESOURCE_CREATION_IMPL_H_ 174 #endif // MOJO_EXAMPLES_PEPPER_CONTAINER_APP_RESOURCE_CREATION_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/pepper/resource_creation_impl.cc ('k') | mojo/examples/pepper_container_app/resource_creation_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698