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

Unified Diff: experimental/c_salt/integration_tests/fake_instance.h

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 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
Index: experimental/c_salt/integration_tests/fake_instance.h
diff --git a/experimental/c_salt/integration_tests/fake_instance.h b/experimental/c_salt/integration_tests/fake_instance.h
deleted file mode 100644
index 51dd2b9d57ddca52c2e62ea57b67bb8a27e4cfcd..0000000000000000000000000000000000000000
--- a/experimental/c_salt/integration_tests/fake_instance.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright (c) 2010 The Ginsu Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef C_SALT_INTEGRATION_TESTS_FAKE_INSTANCE_H_
-#define C_SALT_INTEGRATION_TESTS_FAKE_INSTANCE_H_
-
-#include "boost/shared_ptr.hpp"
-#include "c_salt/instance.h"
-#include "c_salt/integration_tests/method_tester.h"
-#include "c_salt/integration_tests/property_tester.h"
-
-class FakeInstance : public c_salt::Instance {
- public:
- explicit FakeInstance(const NPP& npp_instance);
- virtual ~FakeInstance();
-
- // Specialization of c_salt::Instance
- virtual void InitializeMethods(c_salt::ScriptingBridge* bridge);
- virtual void InitializeProperties(c_salt::ScriptingBridge* bridge);
-
- private:
- FakeInstance(); // Not implemented, do not use.
-
- // ScriptableNativeObjects for testing c_salt features.
- boost::shared_ptr<MethodTester> method_tester_;
- boost::shared_ptr<PropertyTester> property_tester_;
-
- // Getters for tester objects. These are exposed via the ScriptingBridge.
- boost::shared_ptr<MethodTester> GetMethodTester();
- boost::shared_ptr<PropertyTester> GetPropertyTester();
-};
-
-#endif // C_SALT_INTEGRATION_TESTS_FAKE_INSTANCE_H_
« no previous file with comments | « experimental/c_salt/integration_tests/c_salt_tests.js ('k') | experimental/c_salt/integration_tests/fake_instance.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698