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
3 // found in the LICENSE file.
5 #ifndef CONTENT_TEST_PLUGIN_PLUGIN_REQUEST_READ_TEST_H_
6 #define CONTENT_TEST_PLUGIN_PLUGIN_REQUEST_READ_TEST_H_
11 #include "base/compiler_specific.h"
12 #include "content/test/plugin/plugin_test.h"
14 namespace NPAPIClient
{
16 // Tests whether the browser correctly handles single range requests from NPAPI
18 class PluginRequestReadTest
: public PluginTest
{
20 PluginRequestReadTest(NPP id
, NPNetscapeFuncs
* host_functions
);
21 ~PluginRequestReadTest() override
;
26 NPError
New(uint16 mode
,
30 NPSavedData
* saved
) override
;
31 NPError
SetWindow(NPWindow
* window
) override
;
32 NPError
NewStream(NPMIMEType type
,
35 uint16
* stream_type
) override
;
36 NPError
DestroyStream(NPStream
* stream
, NPError reason
) override
;
37 int32
WriteReady(NPStream
* stream
) override
;
38 int32
Write(NPStream
* stream
, int32 offset
, int32 len
, void* buffer
) override
;
41 // Tracks ranges, which we requested, but for which we did not get response.
42 std::vector
<NPByteRange
> requested_ranges_
;
43 std::string url_to_request_
;
48 } // namespace NPAPIClient
50 #endif // CONTENT_TEST_PLUGIN_PLUGIN_REQUEST_READ_TEST_H_