| 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
|
|
|