| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 void SetLoadWithOverviewMode(bool) override; | 113 void SetLoadWithOverviewMode(bool) override; |
| 114 void SetShouldReuseGlobalForUnownedMainFrame(bool) override; | 114 void SetShouldReuseGlobalForUnownedMainFrame(bool) override; |
| 115 void SetProgressBarCompletion(ProgressBarCompletion) override; | 115 void SetProgressBarCompletion(ProgressBarCompletion) override; |
| 116 void SetLocalStorageEnabled(bool) override; | 116 void SetLocalStorageEnabled(bool) override; |
| 117 void SetMainFrameClipsContent(bool) override; | 117 void SetMainFrameClipsContent(bool) override; |
| 118 void SetMainFrameResizesAreOrientationChanges(bool) override; | 118 void SetMainFrameResizesAreOrientationChanges(bool) override; |
| 119 void SetMaxTouchPoints(int) override; | 119 void SetMaxTouchPoints(int) override; |
| 120 void SetMediaPlaybackGestureWhitelistScope(const WebString&) override; | 120 void SetMediaPlaybackGestureWhitelistScope(const WebString&) override; |
| 121 void SetPresentationRequiresUserGesture(bool) override; | 121 void SetPresentationRequiresUserGesture(bool) override; |
| 122 void SetEmbeddedMediaExperienceEnabled(bool) override; | 122 void SetEmbeddedMediaExperienceEnabled(bool) override; |
| 123 void SetPagePopupsSuppressed(bool) override; |
| 123 void SetMinimumAccelerated2dCanvasSize(int) override; | 124 void SetMinimumAccelerated2dCanvasSize(int) override; |
| 124 void SetMinimumFontSize(int) override; | 125 void SetMinimumFontSize(int) override; |
| 125 void SetMinimumLogicalFontSize(int) override; | 126 void SetMinimumLogicalFontSize(int) override; |
| 126 void SetMockScrollbarsEnabled(bool) override; | 127 void SetMockScrollbarsEnabled(bool) override; |
| 127 void SetHideScrollbars(bool) override; | 128 void SetHideScrollbars(bool) override; |
| 128 void SetOfflineWebApplicationCacheEnabled(bool) override; | 129 void SetOfflineWebApplicationCacheEnabled(bool) override; |
| 129 void SetPassiveEventListenerDefault(PassiveEventListenerDefault) override; | 130 void SetPassiveEventListenerDefault(PassiveEventListenerDefault) override; |
| 130 void SetPasswordEchoDurationInSeconds(double) override; | 131 void SetPasswordEchoDurationInSeconds(double) override; |
| 131 void SetPasswordEchoEnabled(bool) override; | 132 void SetPasswordEchoEnabled(bool) override; |
| 132 void SetPerTilePaintingEnabled(bool) override; | 133 void SetPerTilePaintingEnabled(bool) override; |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 bool clobber_user_agent_initial_scale_quirk_; | 271 bool clobber_user_agent_initial_scale_quirk_; |
| 271 float expensive_background_throttling_cpu_budget_; | 272 float expensive_background_throttling_cpu_budget_; |
| 272 float expensive_background_throttling_initial_budget_; | 273 float expensive_background_throttling_initial_budget_; |
| 273 float expensive_background_throttling_max_budget_; | 274 float expensive_background_throttling_max_budget_; |
| 274 float expensive_background_throttling_max_delay_; | 275 float expensive_background_throttling_max_delay_; |
| 275 }; | 276 }; |
| 276 | 277 |
| 277 } // namespace blink | 278 } // namespace blink |
| 278 | 279 |
| 279 #endif | 280 #endif |
| OLD | NEW |