From fde2cca4351fd28d19b8fb2631484c4db845c88a Mon Sep 17 00:00:00 2001 From: "michaelbai@chromium.org" Date: Fri, 25 Jan 2013 19:40:18 +0000 Subject: Add SERVER_REDIRECT bit in ShouldIgnoreNavigation's transition_type parameter. - Changed transition_type parameter type to uint32 and corresponding Java interface to long. BUG=169549 Review URL: https://chromiumcodereview.appspot.com/12041032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@178872 0039d316-1c4b-4281-b951-d872f2087c98 --- .../navigation_interception/intercept_navigation_resource_throttle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'components/navigation_interception/intercept_navigation_resource_throttle.h') diff --git a/components/navigation_interception/intercept_navigation_resource_throttle.h b/components/navigation_interception/intercept_navigation_resource_throttle.h index 7bfe6fa..ee9cc41 100644 --- a/components/navigation_interception/intercept_navigation_resource_throttle.h +++ b/components/navigation_interception/intercept_navigation_resource_throttle.h @@ -48,7 +48,7 @@ class InterceptNavigationResourceThrottle : public content::ResourceThrottle { virtual void WillRedirectRequest(const GURL& new_url, bool* defer) OVERRIDE; private: - bool CheckIfShouldIgnoreNavigation(const GURL& url); + bool CheckIfShouldIgnoreNavigation(const GURL& url, bool is_redirect); void OnResultObtained(bool should_ignore_navigation); net::URLRequest* request_; -- cgit v1.1