| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "webkit/plugins/npapi/test/plugin_request_read_test.h" | 5 #include "content/test/plugin/plugin_request_read_test.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 | 8 |
| 9 namespace NPAPIClient { | 9 namespace NPAPIClient { |
| 10 | 10 |
| 11 PluginRequestReadTest::PluginRequestReadTest(NPP id, | 11 PluginRequestReadTest::PluginRequestReadTest(NPP id, |
| 12 NPNetscapeFuncs* host_functions) | 12 NPNetscapeFuncs* host_functions) |
| 13 : PluginTest(id, host_functions), | 13 : PluginTest(id, host_functions), |
| 14 tests_started_(false), | 14 tests_started_(false), |
| 15 read_requested_(false) { | 15 read_requested_(false) { |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 } | 102 } |
| 103 } | 103 } |
| 104 if (requested_ranges_.empty()) | 104 if (requested_ranges_.empty()) |
| 105 SignalTestCompleted(); | 105 SignalTestCompleted(); |
| 106 | 106 |
| 107 return len; | 107 return len; |
| 108 } | 108 } |
| 109 | 109 |
| 110 } // namespace NPAPIClient | 110 } // namespace NPAPIClient |
| 111 | 111 |
| OLD | NEW |