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

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

Issue 1977303003: Adds a feature to MHTML serialization that omits subframes and subresources marked no-store. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@no-store
Patch Set: Address dcheng's comments. 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
OLDNEW
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
OLDNEW
« content/browser/DEPS ('K') | « 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