Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(394)

Unified Diff: content/browser/frame_host/frame_tree.cc

Issue 1545973002: Remove the is_loading_ field from WebContentsImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/frame_host/frame_tree.cc
diff --git a/content/browser/frame_host/frame_tree.cc b/content/browser/frame_host/frame_tree.cc
index e92d28f80be28b571761859cf90da2588917bb5c..c028ab3970d014a11afbc3570826018056930b76 100644
--- a/content/browser/frame_host/frame_tree.cc
+++ b/content/browser/frame_host/frame_tree.cc
@@ -445,7 +445,7 @@ void FrameTree::ResetLoadProgress() {
load_progress_ = 0.0;
}
-bool FrameTree::IsLoading() {
+bool FrameTree::IsLoading() const {
bool is_loading = false;
ForEach(base::Bind(&IsNodeLoading, &is_loading));
return is_loading;

Powered by Google App Engine
This is Rietveld 408576698