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

Unified Diff: content/browser/renderer_host/resource_dispatcher_host_request_info.h

Issue 7523042: Add a status message "Waiting for extension Foo..." when there's a request (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments Created 9 years, 5 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/resource_dispatcher_host_request_info.h
diff --git a/content/browser/renderer_host/resource_dispatcher_host_request_info.h b/content/browser/renderer_host/resource_dispatcher_host_request_info.h
index b785e7215e2dd5cd1d1857f1be54bc31111fa270..5afdc3e541e7634013d9b17f68f0dddf5ea992d9 100644
--- a/content/browser/renderer_host/resource_dispatcher_host_request_info.h
+++ b/content/browser/renderer_host/resource_dispatcher_host_request_info.h
@@ -126,12 +126,6 @@ class ResourceDispatcherHostRequestInfo : public net::URLRequest::UserData {
// Identifies the type of resource, such as subframe, media, etc.
ResourceType::Type resource_type() const { return resource_type_; }
- // Returns the last updated state of the load. This is updated periodically
- // by the ResourceDispatcherHost and tracked here so we don't send out
- // unnecessary state change notifications.
- net::LoadState last_load_state() const { return last_load_state_; }
- void set_last_load_state(net::LoadState s) { last_load_state_ = s; }
-
// When there is upload data, this is the byte count of that data. When there
// is no upload, this will be 0.
uint64 upload_size() const { return upload_size_; }
@@ -222,7 +216,6 @@ class ResourceDispatcherHostRequestInfo : public net::URLRequest::UserData {
bool has_user_gesture_;
int pause_count_;
ResourceType::Type resource_type_;
- net::LoadState last_load_state_;
uint64 upload_size_;
uint64 last_upload_position_;
base::TimeTicks last_upload_ticks_;

Powered by Google App Engine
This is Rietveld 408576698