| Index: chrome/test/data/nacl/simple.cc
|
| diff --git a/chrome/test/data/nacl/simple.cc b/chrome/test/data/nacl/simple.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c539fbb9590380c10962e2242de33821ca73e051
|
| --- /dev/null
|
| +++ b/chrome/test/data/nacl/simple.cc
|
| @@ -0,0 +1,27 @@
|
| +// Copyright (c) 2012 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 "ppapi/cpp/instance.h"
|
| +#include "ppapi/cpp/module.h"
|
| +
|
| +class SimpleInstance : public pp::Instance {
|
| + public:
|
| + explicit SimpleInstance(PP_Instance instance) : pp::Instance(instance) {
|
| + }
|
| +};
|
| +
|
| +class SimpleModule : public pp::Module {
|
| + public:
|
| + virtual pp::Instance* CreateInstance(PP_Instance instance) {
|
| + return new SimpleInstance(instance);
|
| + }
|
| +};
|
| +
|
| +namespace pp {
|
| +
|
| +Module* CreateModule() {
|
| + return new SimpleModule();
|
| +}
|
| +
|
| +} // namespace pp
|
|
|