summaryrefslogtreecommitdiffstats
path: root/src/core/web_contents_delegate_qt.cpp
diff options
context:
space:
mode:
authorSzabolcs David <davidsz@inf.u-szeged.hu>2014-09-09 06:23:02 -0700
committerSzabolcs David <davidsz@inf.u-szeged.hu>2014-09-09 16:55:55 +0200
commit6b6eb9126e4ba66621cdb3c26c0c025a1f2154dc (patch)
treeb56082f1c9a5de4338292795d4ca3d8baa758bf9 /src/core/web_contents_delegate_qt.cpp
parent9efb45a0e14bfdb801d542c02ff02fc326787cb3 (diff)
Fix tst_QWebEngineFrame::progressSignal API test case
This test fails, because we get two loadProgress signals with the 100 value if the page load is successful. Change-Id: Idbd68c28ba81f8ff0a5b1d98aece82e7a940f1b9 Reviewed-by: Andras Becsi <andras.becsi@digia.com>
Diffstat (limited to 'src/core/web_contents_delegate_qt.cpp')
-rw-r--r--src/core/web_contents_delegate_qt.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/web_contents_delegate_qt.cpp b/src/core/web_contents_delegate_qt.cpp
index b30fcb1e3..c78305876 100644
--- a/src/core/web_contents_delegate_qt.cpp
+++ b/src/core/web_contents_delegate_qt.cpp
@@ -170,7 +170,6 @@ void WebContentsDelegateQt::DidFinishLoad(int64, const GURL &url, bool is_main_f
}
if (is_main_frame) {
- m_viewClient->loadProgressChanged(100);
m_viewClient->loadFinished(true, toQt(url));
content::NavigationEntry *entry = web_contents()->GetController().GetActiveEntry();