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

Unified Diff: content/browser/loader/layered_resource_handler.cc

Issue 12243002: Pass WebKit priority changes and parsing messages up to the browser process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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: content/browser/loader/layered_resource_handler.cc
diff --git a/content/browser/loader/layered_resource_handler.cc b/content/browser/loader/layered_resource_handler.cc
index 872bc7a422d773469ecceea984b6f9e4b51116a3..a876f1ad543a2ee2e7e6466f1e4669038ccb0072 100644
--- a/content/browser/loader/layered_resource_handler.cc
+++ b/content/browser/loader/layered_resource_handler.cc
@@ -80,4 +80,9 @@ void LayeredResourceHandler::OnDataDownloaded(int request_id,
next_handler_->OnDataDownloaded(request_id, bytes_downloaded);
}
+void LayeredResourceHandler::OnRequestPriorityChanged(int request_id) {
+ DCHECK(next_handler_.get());
+ next_handler_->OnRequestPriorityChanged(request_id);
+}
+
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698