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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/filesystem_provider_resource_unittest.cc
diff --git a/ppapi/proxy/filesystem_provider_resource_unittest.cc b/ppapi/proxy/filesystem_provider_resource_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..b527bbce13f6cca88828e3e30438bd0ec745d065
--- /dev/null
+++ b/ppapi/proxy/filesystem_provider_resource_unittest.cc
@@ -0,0 +1,42 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/message_loop/message_loop.h"
+#include "ppapi/c/dev/ppb_filesystemprovider_dev.h"
+#include "ppapi/c/pp_errors.h"
+#include "ppapi/proxy/filesystem_provider_resource.h"
+#include "ppapi/proxy/locking_resource_releaser.h"
+#include "ppapi/proxy/plugin_message_filter.h"
+#include "ppapi/proxy/ppapi_message_utils.h"
+#include "ppapi/proxy/ppapi_messages.h"
+#include "ppapi/proxy/ppapi_proxy_test.h"
+#include "ppapi/shared_impl/proxy_lock.h"
+#include "ppapi/shared_impl/scoped_pp_var.h"
+#include "ppapi/shared_impl/var.h"
+#include "ppapi/thunk/enter.h"
+#include "ppapi/thunk/ppb_filesystem_provider_api.h"
+#include "ppapi/thunk/thunk.h"
+
+
+
+namespace ppapi {
+namespace proxy {
+namespace {
+class FilesystemProviderResourceTest : public PluginProxyTest {
+ public:
+ const PPB_FilesystemProvider_Dev *filesystem_provider_iface;
+
+ FilesystemProviderResourceTest()
+ : filesystem_provider_iface(
+ thunk::GetPPB_FilesystemProvider_Dev_0_1_Thunk() )
+ {
+
+ }
+ /**
+ * Placeholder for future Work
+ */
+}; // class FilesystemProviderResourceTest
+} // namespace
+} // namespace proxy
+} // namespace ppapi
« 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