summaryrefslogtreecommitdiff
path: root/chromium/content/browser/loader/navigation_resource_throttle.h
blob: a9685e347c700988dae5236040be4e5ade03b319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// 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 CONTENT_BROWSER_LOADER_NAVIGATION_RESOURCE_THROTTLE_H_
#define CONTENT_BROWSER_LOADER_NAVIGATION_RESOURCE_THROTTLE_H_

#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "content/common/content_export.h"
#include "content/public/browser/navigation_throttle.h"
#include "content/public/browser/resource_throttle.h"
#include "content/public/common/request_context_type.h"

namespace net {
class URLRequest;
}

namespace content {
class ResourceDispatcherHostDelegate;

// This ResourceThrottle is used to convey throttling information to the UI
// thread during navigations. The UI thread can then use its NavigationThrottle
// mechanism to interact with the navigation.
class NavigationResourceThrottle : public ResourceThrottle {
 public:
  NavigationResourceThrottle(
      net::URLRequest* request,
      ResourceDispatcherHostDelegate* resource_dispatcher_host_delegate,
      RequestContextType request_context_type);
  ~NavigationResourceThrottle() override;

  // ResourceThrottle overrides:
  void WillStartRequest(bool* defer) override;
  void WillRedirectRequest(const net::RedirectInfo& redirect_info,
                           bool* defer) override;
  void WillProcessResponse(bool* defer) override;
  const char* GetNameForLogging() const override;

  // Used in unit tests to make UI checks pass when they would fail due to no
  // NavigationHandle being present in the RenderFrameHost.
  CONTENT_EXPORT static void set_ui_checks_always_succeed_for_testing(
      bool ui_checks_always_succeed);

  // Used in unit tests to make all navigations transfer.
  CONTENT_EXPORT static void set_force_transfer_for_testing(
      bool force_transfer);

 private:
  void OnUIChecksPerformed(NavigationThrottle::ThrottleCheckResult result);

  // Used in transfer navigations.
  void InitiateTransfer();
  void OnTransferComplete();

  net::URLRequest* request_;
  ResourceDispatcherHostDelegate* resource_dispatcher_host_delegate_;
  RequestContextType request_context_type_;
  bool in_cross_site_transition_;
  NavigationThrottle::ThrottleCheckResult on_transfer_done_result_;

  base::WeakPtrFactory<NavigationResourceThrottle> weak_ptr_factory_;

  DISALLOW_COPY_AND_ASSIGN(NavigationResourceThrottle);
};

}  // namespace content

#endif  // CONTENT_BROWSER_LOADER_NAVIGATION_RESOURCE_THROTTLE_H_