| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 bool selectionTextDirection(WebTextDirection& start, | 152 bool selectionTextDirection(WebTextDirection& start, |
| 153 WebTextDirection& end) const override; | 153 WebTextDirection& end) const override; |
| 154 bool isSelectionAnchorFirst() const override; | 154 bool isSelectionAnchorFirst() const override; |
| 155 WebRange caretOrSelectionRange() override; | 155 WebRange caretOrSelectionRange() override; |
| 156 void setTextDirection(WebTextDirection) override; | 156 void setTextDirection(WebTextDirection) override; |
| 157 bool isAcceleratedCompositingActive() const override; | 157 bool isAcceleratedCompositingActive() const override; |
| 158 void willCloseLayerTreeView() override; | 158 void willCloseLayerTreeView() override; |
| 159 void didAcquirePointerLock() override; | 159 void didAcquirePointerLock() override; |
| 160 void didNotAcquirePointerLock() override; | 160 void didNotAcquirePointerLock() override; |
| 161 void didLosePointerLock() override; | 161 void didLosePointerLock() override; |
| 162 void didChangeWindowResizerRect() override; | |
| 163 | 162 |
| 164 // WebView methods: | 163 // WebView methods: |
| 165 virtual bool isWebView() const { return true; } | 164 virtual bool isWebView() const { return true; } |
| 166 void setMainFrame(WebFrame*) override; | 165 void setMainFrame(WebFrame*) override; |
| 167 void setCredentialManagerClient(WebCredentialManagerClient*) override; | 166 void setCredentialManagerClient(WebCredentialManagerClient*) override; |
| 168 void setPrerendererClient(WebPrerendererClient*) override; | 167 void setPrerendererClient(WebPrerendererClient*) override; |
| 169 void setSpellCheckClient(WebSpellCheckClient*) override; | 168 void setSpellCheckClient(WebSpellCheckClient*) override; |
| 170 WebSettings* settings() override; | 169 WebSettings* settings() override; |
| 171 WebString pageEncoding() const override; | 170 WebString pageEncoding() const override; |
| 172 bool tabsToLinks() const override; | 171 bool tabsToLinks() const override; |
| (...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 778 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor; | 777 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor; |
| 779 }; | 778 }; |
| 780 | 779 |
| 781 // We have no ways to check if the specified WebView is an instance of | 780 // We have no ways to check if the specified WebView is an instance of |
| 782 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 781 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
| 783 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 782 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
| 784 | 783 |
| 785 } // namespace blink | 784 } // namespace blink |
| 786 | 785 |
| 787 #endif | 786 #endif |
| OLD | NEW |