| Index: content/public/test/browser_side_navigation_test_utils.cc
|
| diff --git a/content/public/test/browser_side_navigation_test_utils.cc b/content/public/test/browser_side_navigation_test_utils.cc
|
| index 93f8927daa629d9ac84b7d5b7db157f75a46fec3..58058b6ad204b65775d27fb76ea6d7680940d2cb 100644
|
| --- a/content/public/test/browser_side_navigation_test_utils.cc
|
| +++ b/content/public/test/browser_side_navigation_test_utils.cc
|
| @@ -14,6 +14,7 @@
|
| #include "content/public/browser/stream_handle.h"
|
| #include "content/public/common/content_switches.h"
|
| #include "content/test/test_navigation_url_loader_factory.h"
|
| +#include "net/base/net_errors.h"
|
|
|
| namespace content {
|
|
|
| @@ -62,7 +63,7 @@ std::unique_ptr<StreamHandle> MakeEmptyStream() {
|
| StreamRegistry* stream_registry =
|
| browser_side_navigation_test_utils.Get()->stream_registry();
|
| scoped_refptr<Stream> stream(new Stream(stream_registry, NULL, url));
|
| - stream->Finalize();
|
| + stream->Finalize(net::OK);
|
| return stream->CreateHandle();
|
| }
|
|
|
|
|