diff options
Diffstat (limited to 'chrome/test/nacl/nacl_ui_test.h')
-rw-r--r-- | chrome/test/nacl/nacl_ui_test.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/chrome/test/nacl/nacl_ui_test.h b/chrome/test/nacl/nacl_ui_test.h new file mode 100644 index 0000000..1b82c12 --- /dev/null +++ b/chrome/test/nacl/nacl_ui_test.h @@ -0,0 +1,18 @@ +// Copyright (c) 2010 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 CHROME_TEST_NACL_NACL_UI_TEST_H_ +#define CHROME_TEST_NACL_NACL_UI_TEST_H_ + +#include "chrome/test/nacl/nacl_test.h" + +// The actual NaCl ui tests are hooked onto this, so that the base class +// can be reused without running tests that require loading a NaCl module. +class NaClUITest : public NaClTest { + protected: + NaClUITest(); + virtual ~NaClUITest(); +}; + +#endif // CHROME_TEST_NACL_NACL_UI_TEST_H_ |