test_mouse_cursor.h 730 B

123456789101112131415161718192021222324252627
  1. // Copyright (c) 2012 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef PPAPI_TESTS_TEST_MOUSE_CURSOR_H_
  5. #define PPAPI_TESTS_TEST_MOUSE_CURSOR_H_
  6. #include "ppapi/c/ppb_mouse_cursor.h"
  7. #include "ppapi/tests/test_case.h"
  8. class TestMouseCursor : public TestCase {
  9. public:
  10. explicit TestMouseCursor(TestingInstance* instance);
  11. // TestCase implementation.
  12. virtual bool Init();
  13. virtual void RunTests(const std::string& filter);
  14. private:
  15. std::string TestType();
  16. std::string TestCustom();
  17. std::string TestPoint();
  18. const PPB_MouseCursor* mouse_cursor_interface_;
  19. };
  20. #endif // PPAPI_TESTS_TEST_MOUSE_CURSOR_H_