blob: cbb0f904dce3e689ab068b6a545d24eb57d241e8 [file] [log] [blame]
[email protected]d9e440ce2013-07-15 13:48:511// 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.
4
[email protected]a4009af2013-07-19 05:20:245#ifndef CONTENT_TEST_PLUGIN_PLUGIN_REQUEST_READ_TEST_H_
6#define CONTENT_TEST_PLUGIN_PLUGIN_REQUEST_READ_TEST_H_
[email protected]d9e440ce2013-07-15 13:48:517
8#include <string>
9#include <vector>
10
11#include "base/compiler_specific.h"
[email protected]a4009af2013-07-19 05:20:2412#include "content/test/plugin/plugin_test.h"
[email protected]d9e440ce2013-07-15 13:48:5113
14namespace NPAPIClient {
15
16// Tests whether the browser correctly handles single range requests from NPAPI
17// plugins.
18class PluginRequestReadTest : public PluginTest {
19 public:
20 PluginRequestReadTest(NPP id, NPNetscapeFuncs* host_functions);
dchenge933b3eb2014-10-21 11:44:0921 ~PluginRequestReadTest() override;
[email protected]d9e440ce2013-07-15 13:48:5122
23 //
24 // NPAPI Functions
25 //
dchenge933b3eb2014-10-21 11:44:0926 NPError New(uint16 mode,
27 int16 argc,
28 const char* argn[],
29 const char* argv[],
30 NPSavedData* saved) override;
31 NPError SetWindow(NPWindow* window) override;
32 NPError NewStream(NPMIMEType type,
33 NPStream* stream,
34 NPBool seekable,
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;
[email protected]d9e440ce2013-07-15 13:48:5139
40 private:
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_;
44 bool tests_started_;
45 bool read_requested_;
46};
47
48} // namespace NPAPIClient
49
[email protected]a4009af2013-07-19 05:20:2450#endif // CONTENT_TEST_PLUGIN_PLUGIN_REQUEST_READ_TEST_H_
[email protected]d9e440ce2013-07-15 13:48:5151