blob: 6724e4ecce6f678b9d06bd25bc1771fa1520b9b0 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/tabs/tab_network_state.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/web_contents.h"
TabNetworkState TabNetworkStateForWebContents(content::WebContents* contents) {
DCHECK(contents);
if (!contents->IsLoadingToDifferentDocument()) {
content::NavigationEntry* entry =
contents->GetController().GetLastCommittedEntry();
if (entry && (entry->GetPageType() == content::PAGE_TYPE_ERROR))
return TabNetworkState::kError;
return TabNetworkState::kNone;
}
if (contents->IsWaitingForResponse())
return TabNetworkState::kWaiting;
return TabNetworkState::kLoading;
}