Chromium Code Reviews| Index: content/public/browser/web_ui_data_source.h |
| diff --git a/content/public/browser/web_ui_data_source.h b/content/public/browser/web_ui_data_source.h |
| index 5c278c5069feef7d60c6a1d02d061f78350f76c1..9e3265800363cf623acbaeb62d9c77d3cef34c13 100644 |
| --- a/content/public/browser/web_ui_data_source.h |
| +++ b/content/public/browser/web_ui_data_source.h |
| @@ -96,6 +96,8 @@ class WebUIDataSource { |
| // Tells the loading code that resources are gzipped on disk. TODO(dbeam): |
| // write a streaming $i18n{} replacer and remove the "DisableI18n" part. |
| virtual void DisableI18nAndUseGzipForAllPaths() = 0; |
| + |
| + virtual void ExcludePathFromGzip(const std::string& path) = 0; |
|
Charlie Reis
2016/10/13 17:04:43
This is in content/public but doesn't appear to be
Dan Beam
2016/10/13 17:53:46
yep, sorry about that, most of the webui pages i m
|
| }; |
| } // namespace content |