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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 virtual void setShowPaintRects(bool) OVERRIDE; | 257 virtual void setShowPaintRects(bool) OVERRIDE; |
258 void setShowDebugBorders(bool); | 258 void setShowDebugBorders(bool); |
259 virtual void setShowFPSCounter(bool) OVERRIDE; | 259 virtual void setShowFPSCounter(bool) OVERRIDE; |
260 virtual void setContinuousPaintingEnabled(bool) OVERRIDE; | 260 virtual void setContinuousPaintingEnabled(bool) OVERRIDE; |
261 virtual void setShowScrollBottleneckRects(bool) OVERRIDE; | 261 virtual void setShowScrollBottleneckRects(bool) OVERRIDE; |
262 virtual void getSelectionRootBounds(WebRect& bounds) const OVERRIDE; | 262 virtual void getSelectionRootBounds(WebRect& bounds) const OVERRIDE; |
263 virtual void acceptLanguagesChanged() OVERRIDE; | 263 virtual void acceptLanguagesChanged() OVERRIDE; |
264 | 264 |
265 // WebViewImpl | 265 // WebViewImpl |
266 | 266 |
| 267 blink::HitTestResult coreHitTestResultAt(const WebPoint&); |
267 void suppressInvalidations(bool enable); | 268 void suppressInvalidations(bool enable); |
268 void invalidateRect(const blink::IntRect&); | 269 void invalidateRect(const blink::IntRect&); |
269 | 270 |
270 void setIgnoreInputEvents(bool newValue); | 271 void setIgnoreInputEvents(bool newValue); |
271 void setBackgroundColorOverride(WebColor); | 272 void setBackgroundColorOverride(WebColor); |
272 void setZoomFactorOverride(float); | 273 void setZoomFactorOverride(float); |
273 WebDevToolsAgentPrivate* devToolsAgentPrivate() { return m_devToolsAgent.get
(); } | 274 WebDevToolsAgentPrivate* devToolsAgentPrivate() { return m_devToolsAgent.get
(); } |
274 | 275 |
275 blink::Color baseBackgroundColor() const { return m_baseBackgroundColor; } | 276 blink::Color baseBackgroundColor() const { return m_baseBackgroundColor; } |
276 | 277 |
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
724 bool m_userGestureObserved; | 725 bool m_userGestureObserved; |
725 }; | 726 }; |
726 | 727 |
727 // We have no ways to check if the specified WebView is an instance of | 728 // We have no ways to check if the specified WebView is an instance of |
728 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 729 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
729 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 730 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
730 | 731 |
731 } // namespace blink | 732 } // namespace blink |
732 | 733 |
733 #endif | 734 #endif |
OLD | NEW |