// 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 CONTENT_BROWSER_RENDERER_HOST_SHOULD_SWAP_BROWSING_INSTANCE_H_ #define CONTENT_BROWSER_RENDERER_HOST_SHOULD_SWAP_BROWSING_INSTANCE_H_ namespace content { // This is the enumeration of the reasons why we might not swap the // BrowsingInstance for navigations. // This enum is used for histograms and should not be renumbered. // TODO(crbug.com/40108107): Remove after the investigations are complete. enum class ShouldSwapBrowsingInstance { … }; } // namespace content #endif // CONTENT_BROWSER_RENDERER_HOST_SHOULD_SWAP_BROWSING_INSTANCE_H_