// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_TABS_TAB_NETWORK_STATE_H_ #define CHROME_BROWSER_UI_TABS_TAB_NETWORK_STATE_H_ namespace content { class WebContents; } // The types of network activity for a tab. The network state of a tab may be // used to alter the UI (e.g. show different kinds of loading animations). enum class TabNetworkState { … }; // Computes tthe TabNetworkState for the given WebContents. TabNetworkState TabNetworkStateForWebContents(content::WebContents* contents); #endif // CHROME_BROWSER_UI_TABS_TAB_NETWORK_STATE_H_