| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef PPAPI_TESTS_TEST_INPUT_EVENT_H_ | 5 #ifndef PPAPI_TESTS_TEST_INPUT_EVENT_H_ |
| 6 #define PPAPI_TESTS_TEST_INPUT_EVENT_H_ | 6 #define PPAPI_TESTS_TEST_INPUT_EVENT_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include <string> | 10 #include <string> |
| 9 #include <vector> | 11 #include <vector> |
| 10 | 12 |
| 11 #include "ppapi/c/ppb_input_event.h" | 13 #include "ppapi/c/ppb_input_event.h" |
| 12 #include "ppapi/c/private/ppb_testing_private.h" | 14 #include "ppapi/c/private/ppb_testing_private.h" |
| 13 #include "ppapi/cpp/input_event.h" | 15 #include "ppapi/cpp/input_event.h" |
| 14 #include "ppapi/cpp/point.h" | 16 #include "ppapi/cpp/point.h" |
| 15 #include "ppapi/cpp/rect.h" | 17 #include "ppapi/cpp/rect.h" |
| 16 #include "ppapi/tests/test_case.h" | 18 #include "ppapi/tests/test_case.h" |
| 17 #include "ppapi/tests/test_utils.h" | 19 #include "ppapi/tests/test_utils.h" |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 | 59 |
| 58 NestedEvent nested_event_; | 60 NestedEvent nested_event_; |
| 59 | 61 |
| 60 pp::Rect view_rect_; | 62 pp::Rect view_rect_; |
| 61 pp::InputEvent expected_input_event_; | 63 pp::InputEvent expected_input_event_; |
| 62 bool received_expected_event_; | 64 bool received_expected_event_; |
| 63 bool received_finish_message_; | 65 bool received_finish_message_; |
| 64 }; | 66 }; |
| 65 | 67 |
| 66 #endif // PPAPI_TESTS_TEST_INPUT_EVENT_H_ | 68 #endif // PPAPI_TESTS_TEST_INPUT_EVENT_H_ |
| OLD | NEW |