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

Unified Diff: third_party/WebKit/public/web/WebSettings.h

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: Fix a bad merge Created 4 years, 6 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/public/web/WebSettings.h
diff --git a/third_party/WebKit/public/web/WebSettings.h b/third_party/WebKit/public/web/WebSettings.h
index 33f5fcec7eaacfa25e70b052b9d6a4ac2b7f7196..702345583973caf7c52579d35300094651f307f2 100644
--- a/third_party/WebKit/public/web/WebSettings.h
+++ b/third_party/WebKit/public/web/WebSettings.h
@@ -73,6 +73,13 @@ public:
Aggressive,
};
+ enum class ProgressBarCompletion {
kinuko 2016/06/16 05:59:03 Need to define so many same enums (and static asse
Nate Chapin 2016/06/16 20:58:51 Yeah...it'd be awesome if we could get a general s
dcheng 2016/06/17 20:53:06 Maybe let's see if the chrome owners think it make
+ LoadEvent,
+ ResourcesBeforeDCL,
+ DOMContentLoaded,
+ ResourcesBeforeDCLAndSameOriginIFrames
+ };
+
// Selection strategy defines how the selection granularity changes when the
// selection extent is moved.
enum class SelectionStrategyType {
@@ -182,6 +189,7 @@ public:
virtual void setLoadsImagesAutomatically(bool) = 0;
virtual void setLoadWithOverviewMode(bool) = 0;
virtual void setShouldReuseGlobalForUnownedMainFrame(bool) = 0;
+ virtual void setProgressBarCompletion(ProgressBarCompletion) = 0;
virtual void setLocalStorageEnabled(bool) = 0;
virtual void setMainFrameClipsContent(bool) = 0;
virtual void setMainFrameResizesAreOrientationChanges(bool) = 0;
« content/public/common/web_preferences.h ('K') | « third_party/WebKit/Source/web/WebSettingsImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698