2020-02-04 20:19:40 +00:00
|
|
|
// Copyright (c) 2018 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_ELECTRON_NAVIGATION_THROTTLE_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_ELECTRON_NAVIGATION_THROTTLE_H_
|
2020-02-04 20:19:40 +00:00
|
|
|
|
|
|
|
#include "content/public/browser/navigation_throttle.h"
|
|
|
|
|
|
|
|
namespace electron {
|
|
|
|
|
|
|
|
class ElectronNavigationThrottle : public content::NavigationThrottle {
|
|
|
|
public:
|
|
|
|
explicit ElectronNavigationThrottle(content::NavigationHandle* handle);
|
|
|
|
~ElectronNavigationThrottle() override;
|
|
|
|
|
2021-11-03 11:41:45 +00:00
|
|
|
// disable copy
|
|
|
|
ElectronNavigationThrottle(const ElectronNavigationThrottle&) = delete;
|
|
|
|
ElectronNavigationThrottle& operator=(const ElectronNavigationThrottle&) =
|
|
|
|
delete;
|
|
|
|
|
2020-08-21 19:34:09 +00:00
|
|
|
ElectronNavigationThrottle::ThrottleCheckResult WillStartRequest() override;
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
ElectronNavigationThrottle::ThrottleCheckResult WillRedirectRequest()
|
|
|
|
override;
|
|
|
|
|
|
|
|
const char* GetNameForLogging() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace electron
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_ELECTRON_NAVIGATION_THROTTLE_H_
|