summaryrefslogtreecommitdiffstats
path: root/components/navigation_interception/intercept_navigation_resource_throttle.h
diff options
context:
space:
mode:
authormichaelbai@chromium.org <michaelbai@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-25 19:40:18 +0000
committermichaelbai@chromium.org <michaelbai@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-25 19:40:18 +0000
commitfde2cca4351fd28d19b8fb2631484c4db845c88a (patch)
treeea35dd96f60ea7e3c94f155a984003b41c62a3bc /components/navigation_interception/intercept_navigation_resource_throttle.h
parentbf80677772e183e1ce7d4c7e4900cbc410ae8358 (diff)
downloadchromium_src-fde2cca4351fd28d19b8fb2631484c4db845c88a.zip
chromium_src-fde2cca4351fd28d19b8fb2631484c4db845c88a.tar.gz
chromium_src-fde2cca4351fd28d19b8fb2631484c4db845c88a.tar.bz2
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
Diffstat (limited to 'components/navigation_interception/intercept_navigation_resource_throttle.h')
-rw-r--r--components/navigation_interception/intercept_navigation_resource_throttle.h2
1 files changed, 1 insertions, 1 deletions
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_;