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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cc/trees/render_frame_metadata.h"
#include "build/build_config.h"
namespace cc {
RenderFrameMetadata::RenderFrameMetadata() = default;
RenderFrameMetadata::RenderFrameMetadata(const RenderFrameMetadata& other) =
default;
RenderFrameMetadata::RenderFrameMetadata(RenderFrameMetadata&& other) = default;
RenderFrameMetadata::~RenderFrameMetadata() {}
RenderFrameMetadata& RenderFrameMetadata::operator=(
const RenderFrameMetadata&) = default;
RenderFrameMetadata& RenderFrameMetadata::operator=(
RenderFrameMetadata&& other) = default;
bool RenderFrameMetadata::operator==(const RenderFrameMetadata& other) const {
return root_scroll_offset == other.root_scroll_offset &&
root_background_color == other.root_background_color &&
is_scroll_offset_at_top == other.is_scroll_offset_at_top &&
selection == other.selection &&
is_mobile_optimized == other.is_mobile_optimized &&
delegated_ink_metadata == other.delegated_ink_metadata &&
device_scale_factor == other.device_scale_factor &&
viewport_size_in_pixels == other.viewport_size_in_pixels &&
page_scale_factor == other.page_scale_factor &&
external_page_scale_factor == other.external_page_scale_factor &&
top_controls_height == other.top_controls_height &&
top_controls_shown_ratio == other.top_controls_shown_ratio &&
#if BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_IOS)
bottom_controls_height == other.bottom_controls_height &&
bottom_controls_shown_ratio == other.bottom_controls_shown_ratio &&
top_controls_min_height_offset ==
other.top_controls_min_height_offset &&
bottom_controls_min_height_offset ==
other.bottom_controls_min_height_offset &&
min_page_scale_factor == other.min_page_scale_factor &&
max_page_scale_factor == other.max_page_scale_factor &&
root_overflow_y_hidden == other.root_overflow_y_hidden &&
scrollable_viewport_size == other.scrollable_viewport_size &&
root_layer_size == other.root_layer_size &&
has_transparent_background == other.has_transparent_background &&
#endif
local_surface_id == other.local_surface_id &&
new_vertical_scroll_direction == other.new_vertical_scroll_direction &&
primary_main_frame_item_sequence_number ==
other.primary_main_frame_item_sequence_number;
}
bool RenderFrameMetadata::operator!=(const RenderFrameMetadata& other) const {
return !operator==(other);
}
} // namespace cc
|