Commit cc0f372f authored by Ehsan Karamad's avatar Ehsan Karamad Committed by Commit Bot

[ refactor ] Remove unused struct

TestNavigationThrottle::Status seems unused. Removing with this CL.

Bug: None
Change-Id: I69ba98e5b9eaa976861ada7dc772ca7f794d4115
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1642019Reviewed-by: default avatarAlex Moshchuk <alexmos@chromium.org>
Commit-Queue: Ehsan Karamad <ekaramad@chromium.org>
Cr-Commit-Position: refs/heads/master@{#666269}
parent 2a9d7c44
...@@ -35,17 +35,6 @@ class TestNavigationThrottle : public NavigationThrottle { ...@@ -35,17 +35,6 @@ class TestNavigationThrottle : public NavigationThrottle {
ASYNCHRONOUS, ASYNCHRONOUS,
}; };
struct Status {
Status(ThrottleMethod method,
ResultSynchrony synchrony,
NavigationThrottle::ThrottleCheckResult result)
: method(method), synchrony(synchrony), result(result) {}
ThrottleMethod method;
ResultSynchrony synchrony;
NavigationThrottle::ThrottleCheckResult result;
};
TestNavigationThrottle(NavigationHandle* handle); TestNavigationThrottle(NavigationHandle* handle);
~TestNavigationThrottle() override; ~TestNavigationThrottle() override;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment