summaryrefslogtreecommitdiffstats
path: root/content/browser/renderer_host/frame_metadata_util.h
blob: 54b97b8054cbb13220822c44340c385718706f02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (c) 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CONTENT_BROWSER_RENDERER_HOST_FRAME_METADATA_UTIL_H_
#define CONTENT_BROWSER_RENDERER_HOST_FRAME_METADATA_UTIL_H_

#include "content/common/content_export.h"

namespace cc {
class CompositorFrameMetadata;
}

namespace content {

// Decides whether frame metadata corresponds to mobile-optimized content.
// By default returns |false|, except for the following cases:
// - page that has a width=device-width or narrower viewport
//   (indicating that this is a mobile-optimized or responsive web design);
// - page that prevents zooming in or out.
CONTENT_EXPORT bool IsMobileOptimizedFrame(
    const cc::CompositorFrameMetadata& frame_metadata);

}  // namespace content

#endif  // CONTENT_BROWSER_RENDERER_HOST_FRAME_METADATA_UTIL_H_