| Index: content/browser/frame_host/frame_tree_node.cc
|
| diff --git a/content/browser/frame_host/frame_tree_node.cc b/content/browser/frame_host/frame_tree_node.cc
|
| index 845aecea62afc5945311f283f029c8d8b6504682..bbc262e19267f5bcfbda989ed53b63b5a7b80d3f 100644
|
| --- a/content/browser/frame_host/frame_tree_node.cc
|
| +++ b/content/browser/frame_host/frame_tree_node.cc
|
| @@ -16,6 +16,9 @@
|
|
|
| namespace content {
|
|
|
| +const double FrameTreeNode::kLoadingProgressNotStarted = 0.0;
|
| +const double FrameTreeNode::kLoadingProgressMinimum = 0.1;
|
| +const double FrameTreeNode::kLoadingProgressDone = 1.0;
|
| int64 FrameTreeNode::next_frame_tree_node_id_ = 1;
|
|
|
| FrameTreeNode::FrameTreeNode(FrameTree* frame_tree,
|
| @@ -35,7 +38,9 @@ FrameTreeNode::FrameTreeNode(FrameTree* frame_tree,
|
| frame_tree_node_id_(next_frame_tree_node_id_++),
|
| parent_(NULL),
|
| replication_state_(name),
|
| - is_loading_(false) {
|
| + is_loading_(false),
|
| + loading_progress_(kLoadingProgressNotStarted),
|
| + pending_frame_host_(nullptr) {
|
| }
|
|
|
| FrameTreeNode::~FrameTreeNode() {
|
|
|