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

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

Issue 2830353003: Tracing for NavigationHandle lifetime and state. (Closed)
Patch Set: 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 eed2e7270716d46c651fbb1dea8f051a99b20748..c903101422c5501b40cec8518380ee6754678f42 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
@@ -38,6 +38,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