| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_PORT_PLUGINS_TEST_PLUGIN_GETURL_TEST_H__ | 5 #ifndef WEBKIT_PORT_PLUGINS_TEST_PLUGIN_GETURL_TEST_H__ |
| 6 #define WEBKIT_PORT_PLUGINS_TEST_PLUGIN_GETURL_TEST_H__ | 6 #define WEBKIT_PORT_PLUGINS_TEST_PLUGIN_GETURL_TEST_H__ |
| 7 | 7 |
| 8 #include <stdio.h> | 8 #include <stdio.h> |
| 9 | 9 |
| 10 #include "webkit/glue/plugins/test/plugin_test.h" | 10 #include "webkit/glue/plugins/test/plugin_test.h" |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 private: | 40 private: |
| 41 bool tests_started_; | 41 bool tests_started_; |
| 42 int tests_in_progress_; | 42 int tests_in_progress_; |
| 43 std::string self_url_; | 43 std::string self_url_; |
| 44 FILE* test_file_; | 44 FILE* test_file_; |
| 45 bool expect_404_response_; | 45 bool expect_404_response_; |
| 46 // This flag is set to true in the context of the NPN_Evaluate call. | 46 // This flag is set to true in the context of the NPN_Evaluate call. |
| 47 bool npn_evaluate_context_; | 47 bool npn_evaluate_context_; |
| 48 std::string page_not_found_url_; | 48 std::string page_not_found_url_; |
| 49 std::string fail_write_url_; | 49 std::string fail_write_url_; |
| 50 std::string referrer_target_url_; |
| 50 }; | 51 }; |
| 51 | 52 |
| 52 } // namespace NPAPIClient | 53 } // namespace NPAPIClient |
| 53 | 54 |
| 54 #endif // WEBKIT_PORT_PLUGINS_TEST_PLUGIN_GETURL_TEST_H__ | 55 #endif // WEBKIT_PORT_PLUGINS_TEST_PLUGIN_GETURL_TEST_H__ |
| OLD | NEW |