| 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 f905fd0f581852f03c133d4c8fa541360450621e..503d3eea72e54b5c27714dd2cfbb07e32850d2ea 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 {
|
| + LoadEvent,
|
| + ResourcesBeforeDCL,
|
| + DOMContentLoaded,
|
| + ResourcesBeforeDCLAndSameOriginIFrames
|
| + };
|
| +
|
| // Selection strategy defines how the selection granularity changes when the
|
| // selection extent is moved.
|
| enum class SelectionStrategyType {
|
| @@ -181,6 +188,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;
|
|
|