Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(799)

Side by Side Diff: third_party/WebKit/public/web/WebFrameSerializerCacheControlPolicy.h

Issue 1947263004: Introduces a new MHTML generation parameter specifying different behvaior for cache-control headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase onto origin/master. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/WebKit/public/web/WebFrameSerializer.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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
OLDNEW
« no previous file with comments | « third_party/WebKit/public/web/WebFrameSerializer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698