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

Side by Side Diff: content/browser/loader/navigation_resource_handler.h

Issue 648813002: PlzNavigate: Add first version of NavigationURLLoader. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@plz-navigate-prepare
Patch Set: rebase Created 6 years, 1 month 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 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
5 #ifndef CONTENT_BROWSER_LOADER_NAVIGATION_RESOURCE_HANDLER_H_
6 #define CONTENT_BROWSER_LOADER_NAVIGATION_RESOURCE_HANDLER_H_
7
8 #include "base/macros.h"
9 #include "content/browser/loader/resource_handler.h"
10 #include "content/browser/loader/stream_writer.h"
11
12 namespace content {
13
14 class NavigationURLLoaderImplCore;
15
16 // PlzNavigate: The leaf ResourceHandler used with NavigationURLLoaderImplCore.
17 class NavigationResourceHandler : public ResourceHandler {
18 public:
19 NavigationResourceHandler(net::URLRequest* request,
20 NavigationURLLoaderImplCore* core);
21 ~NavigationResourceHandler() override;
22
23 // Called by the loader the cancel the request.
24 void Cancel();
25
26 // Called to the loader to resume a paused redirect.
27 void FollowRedirect();
28
29 // ResourceHandler implementation.
30 void SetController(ResourceController* controller) override;
31 bool OnUploadProgress(uint64 position, uint64 size) override;
32 bool OnRequestRedirected(const net::RedirectInfo& redirect_info,
33 ResourceResponse* response,
34 bool* defer) override;
35 bool OnResponseStarted(ResourceResponse* response, bool* defer) override;
36 bool OnWillStart(const GURL& url, bool* defer) override;
37 bool OnBeforeNetworkStart(const GURL& url, bool* defer) override;
38 bool OnWillRead(scoped_refptr<net::IOBuffer>* buf,
39 int* buf_size,
40 int min_size) override;
41 bool OnReadCompleted(int bytes_read, bool* defer) override;
42 void OnResponseCompleted(const net::URLRequestStatus& status,
43 const std::string& security_info,
44 bool* defer) override;
45 void OnDataDownloaded(int bytes_downloaded) override;
46
47 private:
48 // Clears |core_| and its reference to the resource handler. After calling
49 // this, the lifetime of the request is no longer tied to |core_|.
50 void DetachFromCore();
51
52 NavigationURLLoaderImplCore* core_;
53 StreamWriter writer_;
54
55 DISALLOW_COPY_AND_ASSIGN(NavigationResourceHandler);
56 };
57
58 } // namespace content
59
60 #endif // CONTENT_BROWSER_LOADER_CERTIFICATE_RESOURCE_HANDLER_H_
OLDNEW
« no previous file with comments | « content/browser/frame_host/navigator_impl_unittest.cc ('k') | content/browser/loader/navigation_resource_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698