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

Unified Diff: components/subresource_filter/content/browser/content_subresource_filter_throttle_manager.cc

Issue 2830353003: Tracing for NavigationHandle lifetime and state. (Closed)
Patch Set: Rebase. Created 3 years, 8 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
Index: components/subresource_filter/content/browser/content_subresource_filter_throttle_manager.cc
diff --git a/components/subresource_filter/content/browser/content_subresource_filter_throttle_manager.cc b/components/subresource_filter/content/browser/content_subresource_filter_throttle_manager.cc
index 3bdccc6017d338e3cadc9a7f5acf981461f04c18..4b946d4c15f4e5514f637c5d842d52f2fcc45886 100644
--- a/components/subresource_filter/content/browser/content_subresource_filter_throttle_manager.cc
+++ b/components/subresource_filter/content/browser/content_subresource_filter_throttle_manager.cc
@@ -39,6 +39,9 @@ class ForwardingNavigationThrottle : public content::NavigationThrottle {
delegate_->WillProcessResponse(navigation_handle());
return content::NavigationThrottle::PROCEED;
}
+ const char* GetNameForLogging() override {
+ return "ForwardingNavigationThrottle";
+ }
private:
ContentSubresourceFilterThrottleManager::Delegate* delegate_;

Powered by Google App Engine
This is Rietveld 408576698