| Index: ppapi/tests/testing_instance.h
|
| diff --git a/ppapi/tests/testing_instance.h b/ppapi/tests/testing_instance.h
|
| index b5a63336081b5613ae5fbd7a038ab160e9d89d0a..ad6d08190a77417221f1ffa53e4389bdd3e33701 100644
|
| --- a/ppapi/tests/testing_instance.h
|
| +++ b/ppapi/tests/testing_instance.h
|
| @@ -99,6 +99,9 @@ pp::InstancePrivate {
|
| // evaluate to |true| or the test will fail.
|
| void AddPostCondition(const std::string& script);
|
|
|
| + // See doc for |remove_plugin_|.
|
| + void set_remove_plugin(bool remove) { remove_plugin_ = remove; }
|
| +
|
| private:
|
| void ExecuteTests(int32_t unused);
|
|
|
| @@ -156,6 +159,11 @@ pp::InstancePrivate {
|
|
|
| // WebSocket port.
|
| int websocket_port_;
|
| +
|
| + // At the end of each set of tests, the plugin is removed from the web-page.
|
| + // However, for some tests, it is desirable to not remove the plguin from the
|
| + // page.
|
| + bool remove_plugin_;
|
| };
|
|
|
| #endif // PPAPI_TESTS_TESTING_INSTANCE_H_
|
|
|