Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1656)

Unified Diff: content/public/browser/navigation_handle.h

Issue 2632633006: Implement NavigationThrottle::BLOCK_REQUEST_AND_COLLAPSE. (Closed)
Patch Set: Fix navigation transition type. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/frame_messages.h ('k') | content/public/browser/navigation_throttle.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/navigation_handle.h
diff --git a/content/public/browser/navigation_handle.h b/content/public/browser/navigation_handle.h
index 13c647d63de2c33a17055f5bafdfd478e2438e23..32af5114d090e48c7c78d8c32611ab3b5ef1d7bd 100644
--- a/content/public/browser/navigation_handle.h
+++ b/content/public/browser/navigation_handle.h
@@ -234,8 +234,10 @@ class CONTENT_EXPORT NavigationHandle {
virtual void Resume() = 0;
// Cancels a navigation that was previously deferred by a NavigationThrottle.
- // |result| should be equal to NavigationThrottle::CANCEL or
- // NavigationThrottle::CANCEL_AND_IGNORE.
+ // |result| should be equal to either:
+ // - NavigationThrottle::CANCEL,
+ // - NavigationThrottle::CANCEL_AND_IGNORE, or
+ // - NavigationThrottle::BLOCK_REQUEST_AND_COLLAPSE.
// Note: this may lead to the deletion of the NavigationHandle and its
// associated NavigationThrottles.
virtual void CancelDeferredNavigation(
« no previous file with comments | « content/common/frame_messages.h ('k') | content/public/browser/navigation_throttle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698