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

Unified Diff: webkit/glue/resource_loader_bridge.h

Issue 10640019: Remove the HANDLED_EXTERNALLY status code. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: hack, hack, hack 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: webkit/glue/resource_loader_bridge.h
diff --git a/webkit/glue/resource_loader_bridge.h b/webkit/glue/resource_loader_bridge.h
index 70db933767cda47e9f01be9c883245708b7aa6b3..25b42b274b567c2f601c30f49e92b2a1542dee09 100644
--- a/webkit/glue/resource_loader_bridge.h
+++ b/webkit/glue/resource_loader_bridge.h
@@ -277,6 +277,9 @@ class ResourceLoaderBridge {
// The response status.
net::URLRequestStatus status;
+ // Was the request handled externally.
+ bool handled_externally;
+
// The final URL of the response. This may differ from the request URL in
// the case of a server redirect.
GURL url;
@@ -334,9 +337,10 @@ class ResourceLoaderBridge {
virtual void OnReceivedCachedMetadata(const char* data, int len) { }
// Called when the response is complete. This method signals completion of
- // the resource load.ff
+ // the resource load.
virtual void OnCompletedRequest(
const net::URLRequestStatus& status,
+ bool handled_externally,
const std::string& security_info,
const base::TimeTicks& completion_time) = 0;

Powered by Google App Engine
This is Rietveld 408576698