Chromium Code Reviews| Index: Source/core/fetch/FetchContext.h |
| diff --git a/Source/core/fetch/FetchContext.h b/Source/core/fetch/FetchContext.h |
| index f2d05d9f9ad105e5f21df6f3213c7085acc5af67..57acd34075ae676eaafba6a3fc9fd8b7c8794688 100644 |
| --- a/Source/core/fetch/FetchContext.h |
| +++ b/Source/core/fetch/FetchContext.h |
| @@ -108,6 +108,11 @@ public: |
| virtual void addCSPHeaderIfNecessary(Resource::Type, FetchRequest&); |
| virtual bool isLowPriorityIframe() const { return false; } |
| + virtual bool fetchDeferLateScripts() const { return false; } |
| + virtual bool fetchIncreaseFontPriority() const { return false; } |
| + virtual bool fetchIncreaseAsyncScriptPriority() const { return false; } |
| + virtual bool fetchIncreasePriorities() const { return false; } |
|
Nate Chapin
2015/08/11 17:41:56
This name is really vague. What priorities are bei
Pat Meenan
2015/08/11 18:50:10
ResourceFetcher.cpp has a comment describing the f
Nate Chapin
2015/08/12 21:13:47
A comment in Settings.in is probably a good idea.
Pat Meenan
2015/08/12 21:48:22
Done. The plan is to pull all of the experiment c
|
| + |
| protected: |
| FetchContext() { } |
| }; |