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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_PERFORMANCE_MANAGER_EMBEDDER_GRAPH_FEATURES_H_
#define COMPONENTS_PERFORMANCE_MANAGER_EMBEDDER_GRAPH_FEATURES_H_
#include <cstdint>
#include "base/feature_list.h"
#include "components/performance_manager/public/features.h"
#include "ui/base/device_form_factor.h"
namespace performance_manager {
class Graph;
// A helper for configuring and enabling Graph features. This object is
// constexpr so that it can be easily used with static storage without
// requiring an initializer.
class GraphFeatures {
public:
// Returns a configuration with no graph features. Mostly intended for
// unittests, where tests pick and choose exactly which decorators they want.
static constexpr GraphFeatures WithNone() { return GraphFeatures(); }
// Returns a configuration with the minimal set of graph features required
// for content_shell to work.
static constexpr GraphFeatures WithMinimal() {
return GraphFeatures().EnableMinimal();
}
// Returns a configuration with the default set of graph features shipped
// with a full-featured Chromium browser.
static constexpr GraphFeatures WithDefault() {
return GraphFeatures().EnableDefault();
}
// Helper for housing the actual configuration data.
union Flags {
uint32_t flags;
struct {
// When adding new features here, the following also needs to happen:
// (1) Add a corresponding EnableFeatureFoo() member function.
// (2) Add the feature to EnableDefault() if necessary.
// (3) Add the feature to the implementation of ConfigureGraph().
bool frame_visibility_decorator : 1;
bool frozen_frame_aggregator : 1;
bool important_frame_decorator : 1;
bool metrics_collector : 1;
bool node_impl_describers : 1;
bool page_aggregator : 1;
bool page_load_tracker_decorator : 1;
bool performance_scenarios : 1;
bool priority_tracking : 1;
bool process_hosted_content_types_aggregator : 1;
bool resource_attribution_scheduler : 1;
bool site_data_recorder : 1;
bool tab_page_decorator : 1;
bool v8_context_tracker : 1;
};
};
constexpr GraphFeatures() = default;
constexpr GraphFeatures(const GraphFeatures& other) = default;
GraphFeatures& operator=(const GraphFeatures& other) = default;
constexpr GraphFeatures& EnableFrameVisibilityDecorator() {
flags_.frame_visibility_decorator = true;
return *this;
}
constexpr GraphFeatures& EnableFrozenFrameAggregator() {
flags_.frozen_frame_aggregator = true;
return *this;
}
constexpr GraphFeatures& EnableImportantFrameDecorator() {
flags_.important_frame_decorator = true;
return *this;
}
constexpr GraphFeatures& EnablePerformanceScenarios() {
flags_.performance_scenarios = true;
return *this;
}
constexpr GraphFeatures& EnableMetricsCollector() {
flags_.metrics_collector = true;
return *this;
}
constexpr GraphFeatures& EnableNodeImplDescribers() {
flags_.node_impl_describers = true;
return *this;
}
constexpr GraphFeatures& EnablePageAggregator() {
flags_.page_aggregator = true;
return *this;
}
constexpr GraphFeatures& EnablePageLoadTrackerDecorator() {
flags_.page_load_tracker_decorator = true;
return *this;
}
constexpr GraphFeatures& EnablePriorityTracking() {
EnableFrameVisibilityDecorator();
EnableImportantFrameDecorator();
flags_.priority_tracking = true;
return *this;
}
constexpr GraphFeatures& EnableProcessHostedContentTypesAggregator() {
flags_.process_hosted_content_types_aggregator = true;
return *this;
}
constexpr GraphFeatures& EnableResourceAttributionScheduler() {
flags_.resource_attribution_scheduler = true;
return *this;
}
constexpr GraphFeatures& EnableSiteDataRecorder() {
flags_.site_data_recorder = true;
return *this;
}
constexpr GraphFeatures& EnableTabPageDecorator() {
flags_.tab_page_decorator = true;
return *this;
}
constexpr GraphFeatures& EnableV8ContextTracker() {
flags_.v8_context_tracker = true;
return *this;
}
// Helper to enable the minimal set of features required for a content_shell
// browser to work.
constexpr GraphFeatures& EnableMinimal() {
EnableV8ContextTracker();
return *this;
}
// Helper to enable the default set of features. This is only intended for use
// from production code.
GraphFeatures& EnableDefault() {
EnableFrameVisibilityDecorator();
EnableFrozenFrameAggregator();
EnableImportantFrameDecorator();
EnableMetricsCollector();
EnableNodeImplDescribers();
EnablePageAggregator();
EnablePageLoadTrackerDecorator();
EnablePerformanceScenarios();
EnablePriorityTracking();
EnableProcessHostedContentTypesAggregator();
EnableResourceAttributionScheduler();
EnableTabPageDecorator();
EnableV8ContextTracker();
if (ui::GetDeviceFormFactor() == ui::DEVICE_FORM_FACTOR_DESKTOP) {
EnableSiteDataRecorder();
}
return *this;
}
// Accessor for the current set of flags_.
constexpr const Flags& flags() const { return flags_; }
// Applies the configuration specified on this object to the provided
// graph. This will unconditionally try to install all of the enabled
// features, even if they have already been installed; it is generally
// preferable to call this exactly once on a brand new |graph| instance that
// has had no features installed. Otherwise, it is safe to call this to
// install new features that the caller knows have not yet been installed.
void ConfigureGraph(Graph* graph) const;
private:
Flags flags_ = {0};
};
} // namespace performance_manager
#endif // COMPONENTS_PERFORMANCE_MANAGER_EMBEDDER_GRAPH_FEATURES_H_
|