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

Side by Side Diff: content/renderer/pepper/resource_creation_impl.cc

Issue 24039002: Pepper API implementation for output protection. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: fix build for non-chromeos Created 7 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 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 #include "content/renderer/pepper/resource_creation_impl.h" 5 #include "content/renderer/pepper/resource_creation_impl.h"
6 6
7 #include "content/renderer/pepper/common.h" 7 #include "content/renderer/pepper/common.h"
8 #include "content/renderer/pepper/ppb_audio_impl.h" 8 #include "content/renderer/pepper/ppb_audio_impl.h"
9 #include "content/renderer/pepper/ppb_broker_impl.h" 9 #include "content/renderer/pepper/ppb_broker_impl.h"
10 #include "content/renderer/pepper/ppb_buffer_impl.h" 10 #include "content/renderer/pepper/ppb_buffer_impl.h"
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 PP_TimeTicks time_stamp, 209 PP_TimeTicks time_stamp,
210 uint32_t modifiers) { 210 uint32_t modifiers) {
211 return PPB_InputEvent_Shared::CreateTouchInputEvent( 211 return PPB_InputEvent_Shared::CreateTouchInputEvent(
212 ppapi::OBJECT_IS_IMPL, instance, type, time_stamp, modifiers); 212 ppapi::OBJECT_IS_IMPL, instance, type, time_stamp, modifiers);
213 } 213 }
214 214
215 PP_Resource ResourceCreationImpl::CreateNetworkMonitor(PP_Instance instance) { 215 PP_Resource ResourceCreationImpl::CreateNetworkMonitor(PP_Instance instance) {
216 return 0; // Not supported in-process. 216 return 0; // Not supported in-process.
217 } 217 }
218 218
219 PP_Resource ResourceCreationImpl::CreateOutputProtectionPrivate(
220 PP_Instance instance) {
221 return 0; // Not supported in-process.
222 }
223
219 PP_Resource ResourceCreationImpl::CreatePlatformVerificationPrivate( 224 PP_Resource ResourceCreationImpl::CreatePlatformVerificationPrivate(
220 PP_Instance instance) { 225 PP_Instance instance) {
221 return 0; // Not supported in-process. 226 return 0; // Not supported in-process.
222 } 227 }
223 228
224 PP_Resource ResourceCreationImpl::CreateScrollbar(PP_Instance instance, 229 PP_Resource ResourceCreationImpl::CreateScrollbar(PP_Instance instance,
225 PP_Bool vertical) { 230 PP_Bool vertical) {
226 return PPB_Scrollbar_Impl::Create(instance, PP_ToBool(vertical)); 231 return PPB_Scrollbar_Impl::Create(instance, PP_ToBool(vertical));
227 } 232 }
228 233
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 ppapi::OBJECT_IS_IMPL, instance, time_stamp, modifiers, 301 ppapi::OBJECT_IS_IMPL, instance, time_stamp, modifiers,
297 wheel_delta, wheel_ticks, scroll_by_page); 302 wheel_delta, wheel_ticks, scroll_by_page);
298 } 303 }
299 304
300 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate( 305 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate(
301 PP_Instance instance) { 306 PP_Instance instance) {
302 return 0; // Not supported in-process. 307 return 0; // Not supported in-process.
303 } 308 }
304 309
305 } // namespace content 310 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/pepper/resource_creation_impl.h ('k') | native_client_sdk/src/libraries/ppapi_cpp_private/library.dsc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698