| 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 virtual bool isAcceleratedCompositingActive() const OVERRIDE; | 135 virtual bool isAcceleratedCompositingActive() const OVERRIDE; |
| 136 virtual void willCloseLayerTreeView() OVERRIDE; | 136 virtual void willCloseLayerTreeView() OVERRIDE; |
| 137 virtual void didAcquirePointerLock() OVERRIDE; | 137 virtual void didAcquirePointerLock() OVERRIDE; |
| 138 virtual void didNotAcquirePointerLock() OVERRIDE; | 138 virtual void didNotAcquirePointerLock() OVERRIDE; |
| 139 virtual void didLosePointerLock() OVERRIDE; | 139 virtual void didLosePointerLock() OVERRIDE; |
| 140 virtual void didChangeWindowResizerRect() OVERRIDE; | 140 virtual void didChangeWindowResizerRect() OVERRIDE; |
| 141 | 141 |
| 142 // WebView methods: | 142 // WebView methods: |
| 143 virtual void setMainFrame(WebFrame*) OVERRIDE; | 143 virtual void setMainFrame(WebFrame*) OVERRIDE; |
| 144 virtual void setAutofillClient(WebAutofillClient*) OVERRIDE; | 144 virtual void setAutofillClient(WebAutofillClient*) OVERRIDE; |
| 145 virtual void setCredentialManagerClient(WebCredentialManagerClient*) OVERRID
E; |
| 145 virtual void setDevToolsAgentClient(WebDevToolsAgentClient*) OVERRIDE; | 146 virtual void setDevToolsAgentClient(WebDevToolsAgentClient*) OVERRIDE; |
| 146 virtual void setPrerendererClient(WebPrerendererClient*) OVERRIDE; | 147 virtual void setPrerendererClient(WebPrerendererClient*) OVERRIDE; |
| 147 virtual void setSpellCheckClient(WebSpellCheckClient*) OVERRIDE; | 148 virtual void setSpellCheckClient(WebSpellCheckClient*) OVERRIDE; |
| 148 virtual WebSettings* settings() OVERRIDE; | 149 virtual WebSettings* settings() OVERRIDE; |
| 149 virtual WebString pageEncoding() const OVERRIDE; | 150 virtual WebString pageEncoding() const OVERRIDE; |
| 150 virtual void setPageEncoding(const WebString&) OVERRIDE; | 151 virtual void setPageEncoding(const WebString&) OVERRIDE; |
| 151 virtual bool isTransparent() const OVERRIDE; | 152 virtual bool isTransparent() const OVERRIDE; |
| 152 virtual void setIsTransparent(bool value) OVERRIDE; | 153 virtual void setIsTransparent(bool value) OVERRIDE; |
| 153 virtual void setBaseBackgroundColor(WebColor) OVERRIDE; | 154 virtual void setBaseBackgroundColor(WebColor) OVERRIDE; |
| 154 virtual bool tabsToLinks() const OVERRIDE; | 155 virtual bool tabsToLinks() const OVERRIDE; |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 716 bool m_userGestureObserved; | 717 bool m_userGestureObserved; |
| 717 }; | 718 }; |
| 718 | 719 |
| 719 // We have no ways to check if the specified WebView is an instance of | 720 // We have no ways to check if the specified WebView is an instance of |
| 720 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 721 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
| 721 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 722 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
| 722 | 723 |
| 723 } // namespace blink | 724 } // namespace blink |
| 724 | 725 |
| 725 #endif | 726 #endif |
| OLD | NEW |