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