| 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_TESTING_INSTANCE_H_ | 5 #ifndef PPAPI_TESTS_TESTING_INSTANCE_H_ |
| 6 #define PPAPI_TESTS_TESTING_INSTANCE_H_ | 6 #define PPAPI_TESTS_TESTING_INSTANCE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include <string> | 10 #include <string> |
| 9 | 11 |
| 10 #include "ppapi/utility/completion_callback_factory.h" | 12 #include "ppapi/utility/completion_callback_factory.h" |
| 11 | 13 |
| 12 #if defined(__native_client__) | 14 #if defined(__native_client__) |
| 13 #include "ppapi/cpp/instance.h" | 15 #include "ppapi/cpp/instance.h" |
| 14 #else | 16 #else |
| 15 #include "ppapi/cpp/private/instance_private.h" | 17 #include "ppapi/cpp/private/instance_private.h" |
| 16 #endif | 18 #endif |
| 17 | 19 |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 // WebSocket port. | 184 // WebSocket port. |
| 183 int websocket_port_; | 185 int websocket_port_; |
| 184 | 186 |
| 185 // At the end of each set of tests, the plugin is removed from the web-page. | 187 // At the end of each set of tests, the plugin is removed from the web-page. |
| 186 // However, for some tests, it is desirable to not remove the plguin from the | 188 // However, for some tests, it is desirable to not remove the plguin from the |
| 187 // page. | 189 // page. |
| 188 bool remove_plugin_; | 190 bool remove_plugin_; |
| 189 }; | 191 }; |
| 190 | 192 |
| 191 #endif // PPAPI_TESTS_TESTING_INSTANCE_H_ | 193 #endif // PPAPI_TESTS_TESTING_INSTANCE_H_ |
| OLD | NEW |