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

Unified Diff: third_party/WebKit/Source/web/WebSettingsImpl.cpp

Issue 1860743002: Add a flag to change when android's progress bar completes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add flag to include same origin iframes Created 4 years, 7 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: third_party/WebKit/Source/web/WebSettingsImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebSettingsImpl.cpp b/third_party/WebKit/Source/web/WebSettingsImpl.cpp
index 54d06cbdd3874c7b533fb09d6e31f921f1d4d105..2f73a2f9280acff4eb085fd4f721dd3e6d84e546 100644
--- a/third_party/WebKit/Source/web/WebSettingsImpl.cpp
+++ b/third_party/WebKit/Source/web/WebSettingsImpl.cpp
@@ -292,6 +292,11 @@ void WebSettingsImpl::setShouldReuseGlobalForUnownedMainFrame(bool enabled)
m_settings->setShouldReuseGlobalForUnownedMainFrame(enabled);
}
+void WebSettingsImpl::setProgressBarCompletion(ProgressBarCompletion progressBarCompletion)
+{
+ m_settings->setProgressBarCompletion(static_cast<blink::ProgressBarCompletion>(progressBarCompletion));
+}
+
void WebSettingsImpl::setPluginsEnabled(bool enabled)
{
m_devToolsEmulator->setPluginsEnabled(enabled);

Powered by Google App Engine
This is Rietveld 408576698