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

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

Issue 1093383002: [WIP] Provided file system from NACL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved several modules to chromeos folder. Created 5 years, 5 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/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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 instance, 352 instance,
353 time_stamp, 353 time_stamp,
354 modifiers, 354 modifiers,
355 wheel_delta, 355 wheel_delta,
356 wheel_ticks, 356 wheel_ticks,
357 scroll_by_page); 357 scroll_by_page);
358 } 358 }
359 359
360 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate( 360 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate(
361 PP_Instance instance) { 361 PP_Instance instance) {
362 return 0; // Not supported in-process. 362 return 0; // Not supported in-process.
363 }
364
365 PP_Resource content::ResourceCreationImpl::CreateFilesystemProvider(
366 PP_Instance instance)
367 {
368 return 0;
363 } 369 }
364 370
365 } // namespace content 371 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/pepper/resource_creation_impl.h ('k') | native_client_sdk/src/libraries/ppapi/library.dsc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698