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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 virtual void setIsTransparent(bool value) OVERRIDE; | 180 virtual void setIsTransparent(bool value) OVERRIDE; |
181 virtual void setBaseBackgroundColor(WebColor) OVERRIDE; | 181 virtual void setBaseBackgroundColor(WebColor) OVERRIDE; |
182 virtual bool tabsToLinks() const OVERRIDE; | 182 virtual bool tabsToLinks() const OVERRIDE; |
183 virtual void setTabsToLinks(bool value) OVERRIDE; | 183 virtual void setTabsToLinks(bool value) OVERRIDE; |
184 virtual bool tabKeyCyclesThroughElements() const OVERRIDE; | 184 virtual bool tabKeyCyclesThroughElements() const OVERRIDE; |
185 virtual void setTabKeyCyclesThroughElements(bool value) OVERRIDE; | 185 virtual void setTabKeyCyclesThroughElements(bool value) OVERRIDE; |
186 virtual bool isActive() const OVERRIDE; | 186 virtual bool isActive() const OVERRIDE; |
187 virtual void setIsActive(bool value) OVERRIDE; | 187 virtual void setIsActive(bool value) OVERRIDE; |
188 virtual void setDomainRelaxationForbidden(bool, const WebString& scheme) OVE
RRIDE; | 188 virtual void setDomainRelaxationForbidden(bool, const WebString& scheme) OVE
RRIDE; |
189 virtual void setWindowFeatures(const WebWindowFeatures&) OVERRIDE; | 189 virtual void setWindowFeatures(const WebWindowFeatures&) OVERRIDE; |
| 190 virtual void setOpenedByDOM() OVERRIDE; |
190 virtual WebFrame* mainFrame() OVERRIDE; | 191 virtual WebFrame* mainFrame() OVERRIDE; |
191 virtual WebFrame* findFrameByName( | 192 virtual WebFrame* findFrameByName( |
192 const WebString& name, WebFrame* relativeToFrame) OVERRIDE; | 193 const WebString& name, WebFrame* relativeToFrame) OVERRIDE; |
193 virtual WebFrame* focusedFrame() OVERRIDE; | 194 virtual WebFrame* focusedFrame() OVERRIDE; |
194 virtual void setFocusedFrame(WebFrame*) OVERRIDE; | 195 virtual void setFocusedFrame(WebFrame*) OVERRIDE; |
195 virtual void setInitialFocus(bool reverse) OVERRIDE; | 196 virtual void setInitialFocus(bool reverse) OVERRIDE; |
196 virtual void clearFocusedElement() OVERRIDE; | 197 virtual void clearFocusedElement() OVERRIDE; |
197 virtual void scrollFocusedNodeIntoView() OVERRIDE; | 198 virtual void scrollFocusedNodeIntoView() OVERRIDE; |
198 virtual void scrollFocusedNodeIntoRect(const WebRect&) OVERRIDE; | 199 virtual void scrollFocusedNodeIntoRect(const WebRect&) OVERRIDE; |
199 virtual void zoomToFindInPageRect(const WebRect&) OVERRIDE; | 200 virtual void zoomToFindInPageRect(const WebRect&) OVERRIDE; |
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
754 float m_zoomFactorOverride; | 755 float m_zoomFactorOverride; |
755 }; | 756 }; |
756 | 757 |
757 // We have no ways to check if the specified WebView is an instance of | 758 // We have no ways to check if the specified WebView is an instance of |
758 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 759 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
759 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 760 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
760 | 761 |
761 } // namespace blink | 762 } // namespace blink |
762 | 763 |
763 #endif | 764 #endif |
OLD | NEW |