Chromium Code Reviews| 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 0ed0f2c03ae65bb26215e2b50bd981ab7d28ca9e..e76c6bb76d36e3496aae3716575620ef502df32f 100644 |
| --- a/third_party/WebKit/public/web/WebSettings.h |
| +++ b/third_party/WebKit/public/web/WebSettings.h |
| @@ -66,6 +66,12 @@ public: |
| V8CacheOptionsCode, |
| }; |
| + enum ProgressBarCompletion { |
|
dcheng
2016/05/10 06:28:50
Ditto
Nate Chapin
2016/05/11 00:06:59
Done.
|
| + ProgressBarCompletionLoadEvent, |
| + ProgressBarCompletionDOMContentLoadedAndImage, |
| + ProgressBarCompletionDOMContentLoaded, |
| + }; |
| + |
| // Selection strategy defines how the selection granularity changes when the |
| // selection extent is moved. |
| enum class SelectionStrategyType { |
| @@ -165,6 +171,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; |