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

Side by Side Diff: content/browser/frame_host/frame_tree_node.cc

Issue 925623002: Refactor the loading tracking logic in WebContentsImpl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile Created 5 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/frame_host/frame_tree_node.h" 5 #include "content/browser/frame_host/frame_tree_node.h"
6 6
7 #include <queue> 7 #include <queue>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/stl_util.h" 10 #include "base/stl_util.h"
(...skipping 17 matching lines...) Expand all
28 : frame_tree_(frame_tree), 28 : frame_tree_(frame_tree),
29 navigator_(navigator), 29 navigator_(navigator),
30 render_manager_(this, 30 render_manager_(this,
31 render_frame_delegate, 31 render_frame_delegate,
32 render_view_delegate, 32 render_view_delegate,
33 render_widget_delegate, 33 render_widget_delegate,
34 manager_delegate), 34 manager_delegate),
35 frame_tree_node_id_(next_frame_tree_node_id_++), 35 frame_tree_node_id_(next_frame_tree_node_id_++),
36 parent_(NULL), 36 parent_(NULL),
37 replication_state_(name), 37 replication_state_(name),
38 is_loading_(false) { 38 is_loading_(false),
39 loading_progress_(kNotStartedLoadingProgress) {
39 } 40 }
40 41
41 FrameTreeNode::~FrameTreeNode() { 42 FrameTreeNode::~FrameTreeNode() {
42 if (base::CommandLine::ForCurrentProcess()->HasSwitch( 43 if (base::CommandLine::ForCurrentProcess()->HasSwitch(
43 switches::kEnableBrowserSideNavigation)) { 44 switches::kEnableBrowserSideNavigation)) {
44 navigator_->CancelNavigation(this); 45 navigator_->CancelNavigation(this);
45 } 46 }
46 } 47 }
47 48
48 bool FrameTreeNode::IsMainFrame() const { 49 bool FrameTreeNode::IsMainFrame() const {
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 110
110 for (FrameTreeNode* node = parent(); node; node = node->parent()) { 111 for (FrameTreeNode* node = parent(); node; node = node->parent()) {
111 if (node == other) 112 if (node == other)
112 return true; 113 return true;
113 } 114 }
114 115
115 return false; 116 return false;
116 } 117 }
117 118
118 } // namespace content 119 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698