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

Side by Side Diff: ppapi/proxy/filesystem_provider_resource_unittest.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
« no previous file with comments | « ppapi/proxy/filesystem_provider_resource.cc ('k') | ppapi/proxy/interface_list.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "base/message_loop/message_loop.h"
6 #include "ppapi/c/dev/ppb_filesystemprovider_dev.h"
7 #include "ppapi/c/pp_errors.h"
8 #include "ppapi/proxy/filesystem_provider_resource.h"
9 #include "ppapi/proxy/locking_resource_releaser.h"
10 #include "ppapi/proxy/plugin_message_filter.h"
11 #include "ppapi/proxy/ppapi_message_utils.h"
12 #include "ppapi/proxy/ppapi_messages.h"
13 #include "ppapi/proxy/ppapi_proxy_test.h"
14 #include "ppapi/shared_impl/proxy_lock.h"
15 #include "ppapi/shared_impl/scoped_pp_var.h"
16 #include "ppapi/shared_impl/var.h"
17 #include "ppapi/thunk/enter.h"
18 #include "ppapi/thunk/ppb_filesystem_provider_api.h"
19 #include "ppapi/thunk/thunk.h"
20
21
22
23 namespace ppapi {
24 namespace proxy {
25 namespace {
26 class FilesystemProviderResourceTest : public PluginProxyTest {
27 public:
28 const PPB_FilesystemProvider_Dev *filesystem_provider_iface;
29
30 FilesystemProviderResourceTest()
31 : filesystem_provider_iface(
32 thunk::GetPPB_FilesystemProvider_Dev_0_1_Thunk() )
33 {
34
35 }
36 /**
37 * Placeholder for future Work
38 */
39 }; // class FilesystemProviderResourceTest
40 } // namespace
41 } // namespace proxy
42 } // namespace ppapi
OLDNEW
« no previous file with comments | « ppapi/proxy/filesystem_provider_resource.cc ('k') | ppapi/proxy/interface_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698