| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "core/loader/ProgressTracker.h" | 5 #include "core/loader/ProgressTracker.h" |
| 6 | 6 |
| 7 #include "core/frame/Settings.h" | 7 #include "core/frame/Settings.h" |
| 8 #include "core/loader/EmptyClients.h" | 8 #include "core/loader/EmptyClients.h" |
| 9 #include "core/testing/DummyPageHolder.h" | 9 #include "core/testing/DummyPageHolder.h" |
| 10 #include "platform/network/ResourceResponse.h" | 10 #include "platform/loader/fetch/ResourceResponse.h" |
| 11 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 class ProgressClient : public EmptyLocalFrameClient { | 15 class ProgressClient : public EmptyLocalFrameClient { |
| 16 public: | 16 public: |
| 17 ProgressClient() : m_lastProgress(0.0) {} | 17 ProgressClient() : m_lastProgress(0.0) {} |
| 18 | 18 |
| 19 void progressEstimateChanged(double progressEstimate) override { | 19 void progressEstimateChanged(double progressEstimate) override { |
| 20 m_lastProgress = progressEstimate; | 20 m_lastProgress = progressEstimate; |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 // .2 for finishing parsing, .5 for all bytes received. | 116 // .2 for finishing parsing, .5 for all bytes received. |
| 117 // Medium priority resource is ignored. | 117 // Medium priority resource is ignored. |
| 118 progress().completeProgress(1ul); | 118 progress().completeProgress(1ul); |
| 119 EXPECT_EQ(0.7, lastProgress()); | 119 EXPECT_EQ(0.7, lastProgress()); |
| 120 | 120 |
| 121 progress().finishedParsing(); | 121 progress().finishedParsing(); |
| 122 EXPECT_EQ(1.0, lastProgress()); | 122 EXPECT_EQ(1.0, lastProgress()); |
| 123 } | 123 } |
| 124 | 124 |
| 125 } // namespace blink | 125 } // namespace blink |
| OLD | NEW |