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

Side by Side Diff: content/public/common/previews_state.h

Issue 2642793005: Create a Lite Page bit for previews and fallback to Lo-Fi (Closed)
Patch Set: remove unused frame_messages.h code Created 3 years, 9 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 | « content/common/frame_messages.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 CONTENT_PUBLIC_COMMON_PREVIEWS_TYPE_H_ 5 #ifndef CONTENT_PUBLIC_COMMON_PREVIEWS_TYPE_H_
6 #define CONTENT_PUBLIC_COMMON_PREVIEWS_TYPE_H_ 6 #define CONTENT_PUBLIC_COMMON_PREVIEWS_TYPE_H_
7 7
8 #include "content/common/content_export.h" 8 #include "content/common/content_export.h"
9 #include "third_party/WebKit/public/platform/WebURLRequest.h" 9 #include "third_party/WebKit/public/platform/WebURLRequest.h"
10 10
11 #define STATIC_ASSERT_PREVIEWS_ENUM(a, b) \ 11 #define STATIC_ASSERT_PREVIEWS_ENUM(a, b) \
12 static_assert(static_cast<int>(a) == static_cast<int>(b), \ 12 static_assert(static_cast<int>(a) == static_cast<int>(b), \
13 "mismatching enums: " #a) 13 "mismatching enums: " #a)
14 14
15 namespace content { 15 namespace content {
16 16
17 // The Previews state which determines whether to request a Preview version of 17 // Chrome Proxy Previews header and directives.
18 const char kChromeProxyContentTransformHeader[] =
19 "chrome-proxy-content-transform";
20 const char kChromeProxyEmptyImageDirective[] = "empty-image";
21 const char kChromeProxyLitePageDirective[] = "lite-page";
22
23 typedef int PreviewsState;
24
25 // The Previews types which determines whether to request a Preview version of
18 // the resource. Previews are optimizations that change the format and 26 // the resource. Previews are optimizations that change the format and
19 // content of web pages to improve data savings and / or performance. This enum 27 // content of web pages to improve data savings and / or performance. This enum
20 // determines which Previews types to request. 28 // determines which Previews types to request.
21 enum PreviewsState { 29 enum PreviewsTypes {
22 PREVIEWS_UNSPECIFIED = 0, // Let the browser process decide whether or 30 PREVIEWS_UNSPECIFIED = 0, // Let the browser process decide whether or
23 // not to request Preview types. 31 // not to request Preview types.
24 SERVER_LOFI_ON = 1 << 0, // Request a Lo-Fi version of the resource 32 SERVER_LOFI_ON = 1 << 0, // Request a Lo-Fi version of the resource
25 // from the server. 33 // from the server.
26 CLIENT_LOFI_ON = 1 << 1, // Request a Lo-Fi version of the resource 34 CLIENT_LOFI_ON = 1 << 1, // Request a Lo-Fi version of the resource
27 // from the client. 35 // from the client.
28 PREVIEWS_NO_TRANSFORM = 1 << 2, // Explicitly forbid Previews 36 SERVER_LITE_PAGE_ON = 1 << 2, // Request a Lite Page version of the
37 // resource from the server.
38 PREVIEWS_NO_TRANSFORM = 1 << 3, // Explicitly forbid Previews
29 // transformations. 39 // transformations.
30 PREVIEWS_OFF = 1 << 3, // Request a normal (non-Preview) version of 40 PREVIEWS_OFF = 1 << 4, // Request a normal (non-Preview) version of
31 // the resource. Server transformations may 41 // the resource. Server transformations may
32 // still happen if the page is heavy. 42 // still happen if the page is heavy.
33 PREVIEWS_STATE_LAST = PREVIEWS_OFF 43 PREVIEWS_STATE_LAST = PREVIEWS_OFF
34 }; 44 };
35 45
36 // Ensure that content::PreviewsState and blink::WebURLRequest::PreviewsState 46 // Ensure that content::PreviewsState and blink::WebURLRequest::PreviewsState
37 // are kept in sync. 47 // are kept in sync.
38 STATIC_ASSERT_PREVIEWS_ENUM(PREVIEWS_UNSPECIFIED, 48 STATIC_ASSERT_PREVIEWS_ENUM(PREVIEWS_UNSPECIFIED,
39 blink::WebURLRequest::PreviewsUnspecified); 49 blink::WebURLRequest::PreviewsUnspecified);
40 STATIC_ASSERT_PREVIEWS_ENUM(SERVER_LOFI_ON, blink::WebURLRequest::ServerLoFiOn); 50 STATIC_ASSERT_PREVIEWS_ENUM(SERVER_LOFI_ON, blink::WebURLRequest::ServerLoFiOn);
41 STATIC_ASSERT_PREVIEWS_ENUM(CLIENT_LOFI_ON, blink::WebURLRequest::ClientLoFiOn); 51 STATIC_ASSERT_PREVIEWS_ENUM(CLIENT_LOFI_ON, blink::WebURLRequest::ClientLoFiOn);
52 STATIC_ASSERT_PREVIEWS_ENUM(SERVER_LITE_PAGE_ON,
53 blink::WebURLRequest::ServerLitePageOn);
42 STATIC_ASSERT_PREVIEWS_ENUM(PREVIEWS_NO_TRANSFORM, 54 STATIC_ASSERT_PREVIEWS_ENUM(PREVIEWS_NO_TRANSFORM,
43 blink::WebURLRequest::PreviewsNoTransform); 55 blink::WebURLRequest::PreviewsNoTransform);
44 STATIC_ASSERT_PREVIEWS_ENUM(PREVIEWS_OFF, blink::WebURLRequest::PreviewsOff); 56 STATIC_ASSERT_PREVIEWS_ENUM(PREVIEWS_OFF, blink::WebURLRequest::PreviewsOff);
45 STATIC_ASSERT_PREVIEWS_ENUM(PREVIEWS_STATE_LAST, 57 STATIC_ASSERT_PREVIEWS_ENUM(PREVIEWS_STATE_LAST,
46 blink::WebURLRequest::PreviewsStateLast); 58 blink::WebURLRequest::PreviewsStateLast);
47 59
48 } // namespace content 60 } // namespace content
49 61
50 #endif // CONTENT_PUBLIC_COMMON_PREVIEWS_TYPE_H_ 62 #endif // CONTENT_PUBLIC_COMMON_PREVIEWS_TYPE_H_
OLDNEW
« no previous file with comments | « content/common/frame_messages.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698