chromium/content/browser/renderer_host/display_feature.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/browser/renderer_host/display_feature.h"

namespace content {

bool DisplayFeature::operator==(const DisplayFeature& other) const {}

bool DisplayFeature::operator!=(const DisplayFeature& other) const {}

std::vector<gfx::Rect> DisplayFeature::ComputeViewportSegments(
    const gfx::Size& visible_viewport_size,
    int root_view_offset_from_origin) const {}

// static
std::optional<DisplayFeature> DisplayFeature::Create(Orientation orientation,
                                                     int offset,
                                                     int mask_length,
                                                     int width,
                                                     int height,
                                                     ParamErrorEnum* error) {}

}  // namespace content