Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1479)

Unified Diff: content/browser/loader/mojo_async_resource_handler.h

Issue 1970693002: Use mojo for Chrome Loading, Part 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/loader/mojo_async_resource_handler.h
diff --git a/content/browser/loader/mojo_async_resource_handler.h b/content/browser/loader/mojo_async_resource_handler.h
new file mode 100644
index 0000000000000000000000000000000000000000..ec1a00bfc05fdf702867b668f61d2ac2a34217f2
--- /dev/null
+++ b/content/browser/loader/mojo_async_resource_handler.h
@@ -0,0 +1,98 @@
+// 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_H_
+#define CONTENT_BROWSER_LOADER_MOJO_ASYNC_RESOURCE_HANDLER_H_
+
+#include <stdint.h>
+
+#include <memory>
+#include <string>
+
+#include "base/macros.h"
+#include "base/memory/ref_counted.h"
+#include "base/timer/timer.h"
+#include "content/browser/loader/resource_handler.h"
+#include "content/common/content_export.h"
+#include "content/common/url_loader.mojom.h"
+#include "mojo/message_pump/handle_watcher.h"
+#include "net/base/io_buffer.h"
+#include "url/gurl.h"
+
+namespace net {
+class URLRequest;
+}
+
+namespace content {
+class ResourceDispatcherHostImpl;
+
+// Used to complete an asynchronous resource request in response to resource
+// load events from the resource dispatcher host. This class is used only
+// when LoadingWithMojo runtime enabled flag is enabled.
+//
+// TODO(yhirano): Implement redirects.
+// TODO(yhirano): Implement downloading to file.
+// TODO(yhirano): Add histograms.
+// TODO(yhirano): Set zoom level.
+// TODO(yhirano): Send cached metadata.
+class MojoAsyncResourceHandler : public ResourceHandler {
+ public:
+ MojoAsyncResourceHandler(net::URLRequest* request,
+ ResourceDispatcherHostImpl* rdh,
+ std::unique_ptr<mojom::URLLoader> url_loader,
+ mojom::URLLoaderClientPtr url_loader_client);
+ ~MojoAsyncResourceHandler() override;
+
+ // ResourceHandler implementation:
+ bool OnRequestRedirected(const net::RedirectInfo& redirect_info,
+ ResourceResponse* response,
+ bool* defer) override;
+ bool OnResponseStarted(ResourceResponse* response, bool* defer) override;
+ bool OnWillStart(const GURL& url, bool* defer) override;
+ bool OnBeforeNetworkStart(const GURL& url, bool* defer) override;
+ bool OnWillRead(scoped_refptr<net::IOBuffer>* buf,
+ int* buf_size,
+ int min_size) override;
+ bool OnReadCompleted(int bytes_read, bool* defer) override;
+ void OnResponseCompleted(const net::URLRequestStatus& status,
+ const std::string& security_info,
+ bool* defer) override;
+ void OnDataDownloaded(int bytes_downloaded) override;
+
+ static CONTENT_EXPORT void SetAllocationSizeForTesting(size_t size);
+
+ private:
+ class SharedWriter;
+ class WriterIOBuffer;
+
+ bool CopyReadData(bool* defer);
+ bool AllocateBuffer(bool* defer);
+
+ void ResumeIfDeferred();
+ void OnDefer();
+ bool CheckForSufficientResource();
+ void OnWritable(MojoResult result);
+
+ ResourceDispatcherHostImpl* rdh_;
+
+ bool did_defer_ = false;
+ bool has_checked_for_sufficient_resources_ = false;
+ bool sent_received_response_message_ = false;
+ bool is_using_io_buffer_not_from_writer_ = false;
+ base::TimeTicks response_started_ticks_;
+
+ mojo::common::HandleWatcher handle_watcher_;
+ std::unique_ptr<mojom::URLLoader> url_loader_;
+ mojom::URLLoaderClientPtr url_loader_client_;
+ scoped_refptr<net::IOBufferWithSize> buffer_;
+ size_t buffer_offset_ = 0;
+ size_t buffer_bytes_read_ = 0;
+ scoped_refptr<SharedWriter> shared_writer_;
+
+ DISALLOW_COPY_AND_ASSIGN(MojoAsyncResourceHandler);
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_LOADER_MOJO_ASYNC_RESOURCE_HANDLER_H_

Powered by Google App Engine
This is Rietveld 408576698