| OLD | NEW |
| 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/common/content_switches_internal.h" | 7 #include "content/common/content_switches_internal.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 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 instance, | 358 instance, |
| 359 time_stamp, | 359 time_stamp, |
| 360 modifiers, | 360 modifiers, |
| 361 wheel_delta, | 361 wheel_delta, |
| 362 wheel_ticks, | 362 wheel_ticks, |
| 363 scroll_by_page); | 363 scroll_by_page); |
| 364 } | 364 } |
| 365 | 365 |
| 366 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate( | 366 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate( |
| 367 PP_Instance instance) { | 367 PP_Instance instance) { |
| 368 return 0; // Not supported in-process. | 368 return 0; // Not supported in-process. |
| 369 } |
| 370 |
| 371 PP_Resource content::ResourceCreationImpl::CreateFilesystemProvider( |
| 372 PP_Instance instance) |
| 373 { |
| 374 return 0; |
| 369 } | 375 } |
| 370 | 376 |
| 371 } // namespace content | 377 } // namespace content |
| OLD | NEW |