| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 bool viewportEnabled() const override; | 51 bool viewportEnabled() const override; |
| 52 void setAccelerated2dCanvasEnabled(bool) override; | 52 void setAccelerated2dCanvasEnabled(bool) override; |
| 53 void setAccelerated2dCanvasMSAASampleCount(int) override; | 53 void setAccelerated2dCanvasMSAASampleCount(int) override; |
| 54 void setAcceleratedCompositingEnabled(bool) override; | 54 void setAcceleratedCompositingEnabled(bool) override; |
| 55 void setPreferCompositingToLCDTextEnabled(bool) override; | 55 void setPreferCompositingToLCDTextEnabled(bool) override; |
| 56 void setAccessibilityEnabled(bool) override; | 56 void setAccessibilityEnabled(bool) override; |
| 57 void setAccessibilityPasswordValuesEnabled(bool) override; | 57 void setAccessibilityPasswordValuesEnabled(bool) override; |
| 58 void setAllowDisplayOfInsecureContent(bool) override; | 58 void setAllowDisplayOfInsecureContent(bool) override; |
| 59 void setAllowFileAccessFromFileURLs(bool) override; | 59 void setAllowFileAccessFromFileURLs(bool) override; |
| 60 void setAllowCustomScrollbarInMainFrame(bool) override; | 60 void setAllowCustomScrollbarInMainFrame(bool) override; |
| 61 void setAllowGeolocationOnInsecureOrigins(bool) override; |
| 61 void setAllowRunningOfInsecureContent(bool) override; | 62 void setAllowRunningOfInsecureContent(bool) override; |
| 62 void setAllowScriptsToCloseWindows(bool) override; | 63 void setAllowScriptsToCloseWindows(bool) override; |
| 63 void setAllowUniversalAccessFromFileURLs(bool) override; | 64 void setAllowUniversalAccessFromFileURLs(bool) override; |
| 64 void setAntialiased2dCanvasEnabled(bool) override; | 65 void setAntialiased2dCanvasEnabled(bool) override; |
| 65 void setAntialiasedClips2dCanvasEnabled(bool) override; | 66 void setAntialiasedClips2dCanvasEnabled(bool) override; |
| 66 void setAutoplayExperimentMode(const WebString&) override; | 67 void setAutoplayExperimentMode(const WebString&) override; |
| 67 void setAutoZoomFocusedNodeToLegibleScale(bool) override; | 68 void setAutoZoomFocusedNodeToLegibleScale(bool) override; |
| 68 void setCaretBrowsingEnabled(bool) override; | 69 void setCaretBrowsingEnabled(bool) override; |
| 69 void setClobberUserAgentInitialScaleQuirk(bool) override; | 70 void setClobberUserAgentInitialScaleQuirk(bool) override; |
| 70 void setCookieEnabled(bool) override; | 71 void setCookieEnabled(bool) override; |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 // This quirk is to maintain compatibility with Android apps built on | 227 // This quirk is to maintain compatibility with Android apps built on |
| 227 // the Android SDK prior to and including version 18. Presumably, this | 228 // the Android SDK prior to and including version 18. Presumably, this |
| 228 // can be removed any time after 2015. See http://crbug.com/313754. | 229 // can be removed any time after 2015. See http://crbug.com/313754. |
| 229 bool m_clobberUserAgentInitialScaleQuirk; | 230 bool m_clobberUserAgentInitialScaleQuirk; |
| 230 bool m_mainFrameResizesAreOrientationChanges; | 231 bool m_mainFrameResizesAreOrientationChanges; |
| 231 }; | 232 }; |
| 232 | 233 |
| 233 } // namespace blink | 234 } // namespace blink |
| 234 | 235 |
| 235 #endif | 236 #endif |
| OLD | NEW |