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

Unified Diff: content/browser/renderer_host/throttling_resource_handler.cc

Issue 10640019: Remove the HANDLED_EXTERNALLY status code. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: fixed some minor issues Created 8 years, 6 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/renderer_host/throttling_resource_handler.cc
diff --git a/content/browser/renderer_host/throttling_resource_handler.cc b/content/browser/renderer_host/throttling_resource_handler.cc
index b833b7f3c21c2e0b3656d7fef8199e56f84a940e..d34fa7f911c944aea688baded6deeada2cef6c66 100644
--- a/content/browser/renderer_host/throttling_resource_handler.cc
+++ b/content/browser/renderer_host/throttling_resource_handler.cc
@@ -95,6 +95,10 @@ void ThrottlingResourceHandler::Cancel() {
controller()->Cancel();
}
+void ThrottlingResourceHandler::CancelWithError(int error) {
+ controller()->CancelWithError(error);
+}
+
void ThrottlingResourceHandler::Resume() {
switch (deferred_stage_) {
case DEFERRED_NONE:

Powered by Google App Engine
This is Rietveld 408576698