| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef WebFrameSerializerCacheControlPolicy_h |
| 6 #define WebFrameSerializerCacheControlPolicy_h |
| 7 |
| 8 namespace blink { |
| 9 |
| 10 // WebFrameSerializerCacheControlPolicy configures how WebFrameSerializer |
| 11 // processes resources with different Cache-Control headers. By default, frame |
| 12 // serialization encompasses all resources in a page. If it is desirable to |
| 13 // serialize only those resources that could be stored by a http cache, the |
| 14 // other options may be used. |
| 15 // TODO(dewittj): Add more policies for subframes and subresources. |
| 16 enum class WebFrameSerializerCacheControlPolicy { |
| 17 None = 0, |
| 18 FailForNoStoreMainFrame, |
| 19 Last = FailForNoStoreMainFrame, |
| 20 }; |
| 21 |
| 22 } // namespace blink |
| 23 |
| 24 #endif // WebFrameSerializerCacheControlPolicy_h |
| OLD | NEW |