| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 WEBKIT_PLUGINS_NPAPI_TEST_PLUGIN_TEST_H_ | 5 #ifndef WEBKIT_PORT_PLUGINS_TEST_PLUGIN_TEST_H_ |
| 6 #define WEBKIT_PLUGINS_NPAPI_TEST_PLUGIN_TEST_H_ | 6 #define WEBKIT_PORT_PLUGINS_TEST_PLUGIN_TEST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/string_number_conversions.h" | 10 #include "base/string_number_conversions.h" |
| 11 #include "base/string_util.h" | 11 #include "base/string_util.h" |
| 12 #include "third_party/npapi/bindings/npapi.h" | 12 #include "third_party/npapi/bindings/npapi.h" |
| 13 #include "third_party/npapi/bindings/nphostapi.h" | 13 #include "third_party/npapi/bindings/nphostapi.h" |
| 14 | 14 |
| 15 namespace NPAPIClient { | 15 namespace NPAPIClient { |
| 16 | 16 |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 bool test_completed() const { return test_completed_; } | 122 bool test_completed() const { return test_completed_; } |
| 123 private: | 123 private: |
| 124 NPP id_; | 124 NPP id_; |
| 125 NPNetscapeFuncs * host_functions_; | 125 NPNetscapeFuncs * host_functions_; |
| 126 std::string test_name_; | 126 std::string test_name_; |
| 127 std::string test_id_; | 127 std::string test_id_; |
| 128 std::string test_status_; | 128 std::string test_status_; |
| 129 bool test_completed_; | 129 bool test_completed_; |
| 130 }; | 130 }; |
| 131 | 131 |
| 132 } // namespace NPAPIClient | 132 } // namespace NPAPIClient |
| 133 | 133 |
| 134 #endif // WEBKIT_PLUGINS_NPAPI_TEST_PLUGIN_TEST_H_ | 134 #endif // WEBKIT_PORT_PLUGINS_TEST_PLUGIN_TEST_H_ |
| OLD | NEW |