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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 virtual void setDomainRelaxationForbidden(bool, const WebString& scheme) OVE
RRIDE; | 193 virtual void setDomainRelaxationForbidden(bool, const WebString& scheme) OVE
RRIDE; |
194 virtual void setWindowFeatures(const WebWindowFeatures&) OVERRIDE; | 194 virtual void setWindowFeatures(const WebWindowFeatures&) OVERRIDE; |
195 virtual bool dispatchBeforeUnloadEvent() OVERRIDE; | 195 virtual bool dispatchBeforeUnloadEvent() OVERRIDE; |
196 virtual void dispatchUnloadEvent() OVERRIDE; | 196 virtual void dispatchUnloadEvent() OVERRIDE; |
197 virtual WebFrame* mainFrame() OVERRIDE; | 197 virtual WebFrame* mainFrame() OVERRIDE; |
198 virtual WebFrame* findFrameByName( | 198 virtual WebFrame* findFrameByName( |
199 const WebString& name, WebFrame* relativeToFrame) OVERRIDE; | 199 const WebString& name, WebFrame* relativeToFrame) OVERRIDE; |
200 virtual WebFrame* focusedFrame() OVERRIDE; | 200 virtual WebFrame* focusedFrame() OVERRIDE; |
201 virtual void setFocusedFrame(WebFrame*) OVERRIDE; | 201 virtual void setFocusedFrame(WebFrame*) OVERRIDE; |
202 virtual void setInitialFocus(bool reverse) OVERRIDE; | 202 virtual void setInitialFocus(bool reverse) OVERRIDE; |
203 // Deprecated Api. Please use clearFocusedElement instead. | |
204 virtual void clearFocusedNode() OVERRIDE; | |
205 virtual void clearFocusedElement() OVERRIDE; | 203 virtual void clearFocusedElement() OVERRIDE; |
206 virtual void scrollFocusedNodeIntoView() OVERRIDE; | 204 virtual void scrollFocusedNodeIntoView() OVERRIDE; |
207 virtual void scrollFocusedNodeIntoRect(const WebRect&) OVERRIDE; | 205 virtual void scrollFocusedNodeIntoRect(const WebRect&) OVERRIDE; |
208 virtual void zoomToFindInPageRect(const WebRect&) OVERRIDE; | 206 virtual void zoomToFindInPageRect(const WebRect&) OVERRIDE; |
209 virtual void advanceFocus(bool reverse) OVERRIDE; | 207 virtual void advanceFocus(bool reverse) OVERRIDE; |
210 virtual double zoomLevel() OVERRIDE; | 208 virtual double zoomLevel() OVERRIDE; |
211 virtual double setZoomLevel(double) OVERRIDE; | 209 virtual double setZoomLevel(double) OVERRIDE; |
212 virtual void zoomLimitsChanged(double minimumZoomLevel, double maximumZoomLe
vel) OVERRIDE; | 210 virtual void zoomLimitsChanged(double minimumZoomLevel, double maximumZoomLe
vel) OVERRIDE; |
213 virtual float textZoomFactor() OVERRIDE; | 211 virtual float textZoomFactor() OVERRIDE; |
214 virtual float setTextZoomFactor(float) OVERRIDE; | 212 virtual float setTextZoomFactor(float) OVERRIDE; |
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
772 float m_zoomFactorOverride; | 770 float m_zoomFactorOverride; |
773 }; | 771 }; |
774 | 772 |
775 // We have no ways to check if the specified WebView is an instance of | 773 // We have no ways to check if the specified WebView is an instance of |
776 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 774 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
777 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 775 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
778 | 776 |
779 } // namespace blink | 777 } // namespace blink |
780 | 778 |
781 #endif | 779 #endif |
OLD | NEW |