// Copyright 2019 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_PAGE_LOAD_METRICS_COMMON_PAGE_END_REASON_H_ #define COMPONENTS_PAGE_LOAD_METRICS_COMMON_PAGE_END_REASON_H_ namespace page_load_metrics { // This enum represents how a page load ends. If the action occurs before the // page load finishes (or reaches some point like first paint), then we consider // the load to be aborted. // // These values are persisted to logs and the history DB. Entries should not be // renumbered and numeric values should never be reused. For any additions, also // update the corresponding PageEndReason enum in enums.xml. enum PageEndReason { … }; } // namespace page_load_metrics #endif // COMPONENTS_PAGE_LOAD_METRICS_COMMON_PAGE_END_REASON_H_