| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 WebFloatPoint visualViewportOffset() const override; | 219 WebFloatPoint visualViewportOffset() const override; |
| 220 WebFloatSize visualViewportSize() const override; | 220 WebFloatSize visualViewportSize() const override; |
| 221 void resetScrollAndScaleState() override; | 221 void resetScrollAndScaleState() override; |
| 222 void setIgnoreViewportTagScaleLimits(bool) override; | 222 void setIgnoreViewportTagScaleLimits(bool) override; |
| 223 WebSize contentsPreferredMinimumSize() override; | 223 WebSize contentsPreferredMinimumSize() override; |
| 224 void setDisplayMode(WebDisplayMode) override; | 224 void setDisplayMode(WebDisplayMode) override; |
| 225 | 225 |
| 226 void setDeviceScaleFactor(float) override; | 226 void setDeviceScaleFactor(float) override; |
| 227 void setZoomFactorForDeviceScaleFactor(float) override; | 227 void setZoomFactorForDeviceScaleFactor(float) override; |
| 228 | 228 |
| 229 void setDeviceColorSpace(const gfx::ColorSpace&) override; | 229 void setDeviceColorProfile(const WebVector<char>&) override; |
| 230 | 230 |
| 231 void enableAutoResizeMode(const WebSize& minSize, | 231 void enableAutoResizeMode(const WebSize& minSize, |
| 232 const WebSize& maxSize) override; | 232 const WebSize& maxSize) override; |
| 233 void disableAutoResizeMode() override; | 233 void disableAutoResizeMode() override; |
| 234 void performMediaPlayerAction(const WebMediaPlayerAction& action, | 234 void performMediaPlayerAction(const WebMediaPlayerAction& action, |
| 235 const WebPoint& location) override; | 235 const WebPoint& location) override; |
| 236 void performPluginAction(const WebPluginAction&, const WebPoint&) override; | 236 void performPluginAction(const WebPluginAction&, const WebPoint&) override; |
| 237 void audioStateChanged(bool isAudioPlaying) override; | 237 void audioStateChanged(bool isAudioPlaying) override; |
| 238 WebHitTestResult hitTestResultAt(const WebPoint&) override; | 238 WebHitTestResult hitTestResultAt(const WebPoint&) override; |
| 239 WebHitTestResult hitTestResultForTap(const WebPoint&, | 239 WebHitTestResult hitTestResultForTap(const WebPoint&, |
| (...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 738 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor; | 738 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor; |
| 739 }; | 739 }; |
| 740 | 740 |
| 741 // We have no ways to check if the specified WebView is an instance of | 741 // We have no ways to check if the specified WebView is an instance of |
| 742 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 742 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
| 743 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 743 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
| 744 | 744 |
| 745 } // namespace blink | 745 } // namespace blink |
| 746 | 746 |
| 747 #endif | 747 #endif |
| OLD | NEW |