| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 virtual int availablePointerTypes() const override; | 48 virtual int availablePointerTypes() const override; |
| 49 virtual PointerType primaryPointerType() const override; | 49 virtual PointerType primaryPointerType() const override; |
| 50 virtual int availableHoverTypes() const override; | 50 virtual int availableHoverTypes() const override; |
| 51 virtual HoverType primaryHoverType() const override; | 51 virtual HoverType primaryHoverType() const override; |
| 52 virtual bool viewportEnabled() const override; | 52 virtual bool viewportEnabled() const override; |
| 53 virtual void setAccelerated2dCanvasEnabled(bool) override; | 53 virtual void setAccelerated2dCanvasEnabled(bool) override; |
| 54 virtual void setAccelerated2dCanvasMSAASampleCount(int) override; | 54 virtual void setAccelerated2dCanvasMSAASampleCount(int) override; |
| 55 virtual void setAcceleratedCompositingEnabled(bool) override; | 55 virtual void setAcceleratedCompositingEnabled(bool) override; |
| 56 virtual void setPreferCompositingToLCDTextEnabled(bool) override; | 56 virtual void setPreferCompositingToLCDTextEnabled(bool) override; |
| 57 virtual void setAccessibilityEnabled(bool) override; | 57 virtual void setAccessibilityEnabled(bool) override; |
| 58 virtual void setAccessibilityPasswordValuesEnabled(bool) override; |
| 58 virtual void setAllowDisplayOfInsecureContent(bool) override; | 59 virtual void setAllowDisplayOfInsecureContent(bool) override; |
| 59 virtual void setAllowFileAccessFromFileURLs(bool) override; | 60 virtual void setAllowFileAccessFromFileURLs(bool) override; |
| 60 virtual void setAllowCustomScrollbarInMainFrame(bool) override; | 61 virtual void setAllowCustomScrollbarInMainFrame(bool) override; |
| 61 virtual void setAllowRunningOfInsecureContent(bool) override; | 62 virtual void setAllowRunningOfInsecureContent(bool) override; |
| 62 virtual void setAllowConnectingInsecureWebSocket(bool) override; | 63 virtual void setAllowConnectingInsecureWebSocket(bool) override; |
| 63 virtual void setAllowScriptsToCloseWindows(bool) override; | 64 virtual void setAllowScriptsToCloseWindows(bool) override; |
| 64 virtual void setAllowUniversalAccessFromFileURLs(bool) override; | 65 virtual void setAllowUniversalAccessFromFileURLs(bool) override; |
| 65 virtual void setAntialiased2dCanvasEnabled(bool) override; | 66 virtual void setAntialiased2dCanvasEnabled(bool) override; |
| 66 virtual void setAntialiasedClips2dCanvasEnabled(bool) override; | 67 virtual void setAntialiasedClips2dCanvasEnabled(bool) override; |
| 67 virtual void setAsynchronousSpellCheckingEnabled(bool) override; | 68 virtual void setAsynchronousSpellCheckingEnabled(bool) override; |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 // This quirk is to maintain compatibility with Android apps built on | 217 // This quirk is to maintain compatibility with Android apps built on |
| 217 // the Android SDK prior to and including version 18. Presumably, this | 218 // the Android SDK prior to and including version 18. Presumably, this |
| 218 // can be removed any time after 2015. See http://crbug.com/313754. | 219 // can be removed any time after 2015. See http://crbug.com/313754. |
| 219 bool m_clobberUserAgentInitialScaleQuirk; | 220 bool m_clobberUserAgentInitialScaleQuirk; |
| 220 bool m_mainFrameResizesAreOrientationChanges; | 221 bool m_mainFrameResizesAreOrientationChanges; |
| 221 }; | 222 }; |
| 222 | 223 |
| 223 } // namespace blink | 224 } // namespace blink |
| 224 | 225 |
| 225 #endif | 226 #endif |
| OLD | NEW |