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

Unified Diff: components/web_view/url_request_cloneable.h

Issue 1677293002: Bye bye Mandoline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moar Created 4 years, 10 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
« no previous file with comments | « components/web_view/test_runner/test_runner_main.cc ('k') | components/web_view/url_request_cloneable.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/web_view/url_request_cloneable.h
diff --git a/components/web_view/url_request_cloneable.h b/components/web_view/url_request_cloneable.h
deleted file mode 100644
index 24948597d3827025302edd2c6045d49d8d9a73e9..0000000000000000000000000000000000000000
--- a/components/web_view/url_request_cloneable.h
+++ /dev/null
@@ -1,65 +0,0 @@
-// Copyright 2015 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 COMPONENTS_WEB_VIEW_URL_REQUEST_CLONEABLE_H_
-#define COMPONENTS_WEB_VIEW_URL_REQUEST_CLONEABLE_H_
-
-#include <stdint.h>
-
-#include <string>
-#include <vector>
-
-#include "base/macros.h"
-#include "base/time/time.h"
-#include "mojo/services/network/public/interfaces/url_loader.mojom.h"
-#include "url/gurl.h"
-
-namespace web_view {
-
-// This class caches data associated with a mojo::URLRequest and vends copies
-// of the request for the WebView system. Copies are used for repeated
-// navigations, but URLRequest structs are not copyable, as they contain
-// handles to transfer large amounts of data between processes, so we
-// immediately read the data from pipes and keep a copy here.
-class URLRequestCloneable {
- public:
- explicit URLRequestCloneable(mojo::URLRequestPtr original_request);
- explicit URLRequestCloneable(const GURL& raw_url);
- ~URLRequestCloneable();
-
- // Creates a new URLRequest.
- mojo::URLRequestPtr Clone() const;
-
- base::TimeTicks originating_time() const { return originating_time_; }
- void set_originating_time(base::TimeTicks value) {
- originating_time_ = value;
- }
-
- private:
- // All of these are straight from mojo::URLRequest.
- mojo::String url_;
- mojo::String method_;
- mojo::Array<mojo::HttpHeaderPtr> headers_;
- uint32_t response_body_buffer_size_;
- bool auto_follow_redirects_;
- bool bypass_cache_;
-
- // Whether the body mojo array in the |original_request| was null. We keep
- // track of this so we can differentiate between null arrays and empty
- // arrays.
- bool original_body_null_;
-
- // This is a serialized version of the data from mojo::URLRequest. We copy
- // this data straight out of the data pipes, and then serve it any time that
- // AsURLRequest() is called.
- std::vector<std::string> body_;
-
- base::TimeTicks originating_time_;
-
- DISALLOW_COPY_AND_ASSIGN(URLRequestCloneable);
-};
-
-} // namespace web_view
-
-#endif // COMPONENTS_WEB_VIEW_URL_REQUEST_CLONEABLE_H_
« no previous file with comments | « components/web_view/test_runner/test_runner_main.cc ('k') | components/web_view/url_request_cloneable.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698