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

Unified Diff: third_party/WebKit/public/platform/WebFrameScheduler.h

Issue 2125273002: Fix a problem with duplicate calls to FrameFetchContext::dispatchDidFail (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename the set Created 4 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
« no previous file with comments | « third_party/WebKit/Source/core/loader/FrameFetchContext.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/platform/WebFrameScheduler.h
diff --git a/third_party/WebKit/public/platform/WebFrameScheduler.h b/third_party/WebKit/public/platform/WebFrameScheduler.h
index 6d11c0f536aa065ccb7234dcabb38459acb8d684..558cecd3323138ee05d38a8c98b6dc47ed62c054 100644
--- a/third_party/WebKit/public/platform/WebFrameScheduler.h
+++ b/third_party/WebKit/public/platform/WebFrameScheduler.h
@@ -47,11 +47,11 @@ public:
// Tells the scheduler a resource load has started. The scheduler may make
// policy decisions based on this.
- virtual void incrementPendingResourceLoadCount() { }
+ virtual void didStartLoading(unsigned long identifier) { }
- // Tells the scheduler a resource load has started. The scheduler may make
+ // Tells the scheduler a resource load has stopped. The scheduler may make
// policy decisions based on this.
- virtual void decrementPendingResourceLoadCount() { }
+ virtual void didStopLoading(unsigned long identifier) { }
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/loader/FrameFetchContext.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698