| 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
|
|
|