Index: content/browser/loader/mojo_async_resource_handler_test_util.h |
diff --git a/content/browser/loader/mojo_async_resource_handler_test_util.h b/content/browser/loader/mojo_async_resource_handler_test_util.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a79fdc1031ce236f47a058a41bbd4ea2ccf39b85 |
--- /dev/null |
+++ b/content/browser/loader/mojo_async_resource_handler_test_util.h |
@@ -0,0 +1,58 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CONTENT_BROWSER_LOADER_MOJO_ASYNC_RESOURCE_HANDLER_TEST_UTIL_H_ |
+#define CONTENT_BROWSER_LOADER_MOJO_ASYNC_RESOURCE_HANDLER_TEST_UTIL_H_ |
+ |
+#include "base/callback.h" |
+#include "base/macros.h" |
+#include "content/common/resource_request_completion_status.h" |
+#include "content/common/url_loader.mojom.h" |
+#include "content/public/common/resource_response.h" |
+#include "mojo/public/c/system/data_pipe.h" |
+#include "mojo/public/cpp/bindings/binding.h" |
+ |
+namespace content { |
+ |
+class FakeURLLoaderClient final : public mojom::URLLoaderClient { |
+ public: |
+ FakeURLLoaderClient(); |
+ ~FakeURLLoaderClient() override; |
+ |
+ void OnReceiveResponse(const ResourceResponseHead& response_head) override; |
+ void OnStartLoadingResponseBody( |
+ mojo::ScopedDataPipeConsumerHandle body) override; |
+ void OnComplete(const ResourceRequestCompletionStatus& status) override; |
+ |
+ bool has_received_response() const { return has_received_response_; } |
+ bool has_received_completion() const { return has_received_completion_; } |
+ const ResourceResponseHead& response_head() const { return response_head_; } |
+ mojo::DataPipeConsumerHandle response_body() { return response_body_.get(); } |
+ const ResourceRequestCompletionStatus& completion_status() const { |
+ return completion_status_; |
+ } |
+ |
+ mojom::URLLoaderClientPtr CreateInterfacePtrAndBind() { |
+ return binding_.CreateInterfacePtrAndBind(); |
+ } |
+ |
+ void set_quit_closure(const base::Closure& quit_closure) { |
+ quit_closure_ = quit_closure; |
+ } |
+ |
+ private: |
+ mojo::Binding<mojom::URLLoaderClient> binding_; |
+ ResourceResponseHead response_head_; |
+ mojo::ScopedDataPipeConsumerHandle response_body_; |
+ ResourceRequestCompletionStatus completion_status_; |
+ bool has_received_response_ = false; |
+ bool has_received_completion_ = false; |
+ base::Closure quit_closure_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(FakeURLLoaderClient); |
+}; |
+ |
+} // namespace content |
+ |
+#endif // CONTENT_BROWSER_LOADER_MOJO_ASYNC_RESOURCE_HANDLER_TEST_UTIL_H_ |