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

Unified Diff: ppapi/tests/test_empty.h

Issue 9662055: Test for --nacl-gdb functionality. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Use environment variable to pass file between test and mock_nacl_gdb Created 8 years, 9 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: ppapi/tests/test_empty.h
===================================================================
--- ppapi/tests/test_empty.h (revision 0)
+++ ppapi/tests/test_empty.h (working copy)
@@ -0,0 +1,24 @@
+// 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.
+
+#ifndef PPAPI_TESTS_TEST_EMPTY_H_
+#define PPAPI_TESTS_TEST_EMPTY_H_
+
+#include <string>
+
+#include "ppapi/tests/test_case.h"
+
+class TestEmpty : public TestCase {
+ public:
+ explicit TestEmpty(TestingInstance* instance);
+
+ // TestCase implementation.
+ virtual bool Init();
+ virtual void RunTests(const std::string& filter);
+
+ private:
+ std::string TestNaClLoad();
+};
+
+#endif // PPAPI_TESTS_TEST_EMPTY_H_

Powered by Google App Engine
This is Rietveld 408576698