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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 virtual void setShowPaintRects(bool) OVERRIDE; | 254 virtual void setShowPaintRects(bool) OVERRIDE; |
255 void setShowDebugBorders(bool); | 255 void setShowDebugBorders(bool); |
256 virtual void setShowFPSCounter(bool) OVERRIDE; | 256 virtual void setShowFPSCounter(bool) OVERRIDE; |
257 virtual void setContinuousPaintingEnabled(bool) OVERRIDE; | 257 virtual void setContinuousPaintingEnabled(bool) OVERRIDE; |
258 virtual void setShowScrollBottleneckRects(bool) OVERRIDE; | 258 virtual void setShowScrollBottleneckRects(bool) OVERRIDE; |
259 virtual void getSelectionRootBounds(WebRect& bounds) const OVERRIDE; | 259 virtual void getSelectionRootBounds(WebRect& bounds) const OVERRIDE; |
260 virtual void acceptLanguagesChanged() OVERRIDE; | 260 virtual void acceptLanguagesChanged() OVERRIDE; |
261 | 261 |
262 // WebViewImpl | 262 // WebViewImpl |
263 | 263 |
| 264 WebCore::HitTestResult coreHitTestResultAt(const WebPoint&); |
264 void suppressInvalidations(bool enable); | 265 void suppressInvalidations(bool enable); |
265 void invalidateRect(const WebCore::IntRect&); | 266 void invalidateRect(const WebCore::IntRect&); |
266 | 267 |
267 void setIgnoreInputEvents(bool newValue); | 268 void setIgnoreInputEvents(bool newValue); |
268 void setBackgroundColorOverride(WebColor); | 269 void setBackgroundColorOverride(WebColor); |
269 void setZoomFactorOverride(float); | 270 void setZoomFactorOverride(float); |
270 WebDevToolsAgentPrivate* devToolsAgentPrivate() { return m_devToolsAgent.get
(); } | 271 WebDevToolsAgentPrivate* devToolsAgentPrivate() { return m_devToolsAgent.get
(); } |
271 | 272 |
272 WebCore::Color baseBackgroundColor() const { return m_baseBackgroundColor; } | 273 WebCore::Color baseBackgroundColor() const { return m_baseBackgroundColor; } |
273 | 274 |
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
712 bool m_userGestureObserved; | 713 bool m_userGestureObserved; |
713 }; | 714 }; |
714 | 715 |
715 // We have no ways to check if the specified WebView is an instance of | 716 // We have no ways to check if the specified WebView is an instance of |
716 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 717 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
717 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 718 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
718 | 719 |
719 } // namespace blink | 720 } // namespace blink |
720 | 721 |
721 #endif | 722 #endif |
OLD | NEW |