| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 virtual void takeFocus(FocusType) override; | 68 virtual void takeFocus(FocusType) override; |
| 69 virtual void focusedNodeChanged(Node*) override; | 69 virtual void focusedNodeChanged(Node*) override; |
| 70 virtual void focusedFrameChanged(LocalFrame*) override; | 70 virtual void focusedFrameChanged(LocalFrame*) override; |
| 71 virtual void show(NavigationPolicy) override; | 71 virtual void show(NavigationPolicy) override; |
| 72 virtual bool shouldReportDetailedMessageForSource(const WTF::String&) overri
de; | 72 virtual bool shouldReportDetailedMessageForSource(const WTF::String&) overri
de; |
| 73 virtual void addMessageToConsole( | 73 virtual void addMessageToConsole( |
| 74 LocalFrame*, MessageSource, MessageLevel, | 74 LocalFrame*, MessageSource, MessageLevel, |
| 75 const WTF::String& message, unsigned lineNumber, | 75 const WTF::String& message, unsigned lineNumber, |
| 76 const WTF::String& sourceID, const WTF::String& stackTrace) override; | 76 const WTF::String& sourceID, const WTF::String& stackTrace) override; |
| 77 virtual bool tabsToLinks() override; | 77 virtual bool tabsToLinks() override; |
| 78 virtual void invalidateContentsAndRootView(const IntRect&) override; | |
| 79 virtual void invalidateContentsForSlowScroll(const IntRect&) override; | |
| 80 virtual void scheduleAnimation() override; | 78 virtual void scheduleAnimation() override; |
| 81 virtual IntRect rootViewToScreen(const IntRect&) const override; | 79 virtual IntRect rootViewToScreen(const IntRect&) const override; |
| 82 virtual WebScreenInfo screenInfo() const override; | 80 virtual WebScreenInfo screenInfo() const override; |
| 83 virtual void layoutUpdated(LocalFrame*) const override; | 81 virtual void layoutUpdated(LocalFrame*) const override; |
| 84 virtual void mouseDidMoveOverElement( | 82 virtual void mouseDidMoveOverElement( |
| 85 const HitTestResult&, unsigned modifierFlags) override; | 83 const HitTestResult&, unsigned modifierFlags) override; |
| 86 virtual void setToolTip(const WTF::String& tooltipText, TextDirection) overr
ide; | 84 virtual void setToolTip(const WTF::String& tooltipText, TextDirection) overr
ide; |
| 87 virtual void setCursor(const Cursor&) override; | 85 virtual void setCursor(const Cursor&) override; |
| 88 virtual void setTouchAction(TouchAction) override; | 86 virtual void setTouchAction(TouchAction) override; |
| 89 | 87 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 108 void setCursor(const WebCursorInfo&); | 106 void setCursor(const WebCursorInfo&); |
| 109 | 107 |
| 110 WebViewImpl* m_webView; // weak pointer | 108 WebViewImpl* m_webView; // weak pointer |
| 111 }; | 109 }; |
| 112 | 110 |
| 113 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); | 111 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); |
| 114 | 112 |
| 115 } // namespace blink | 113 } // namespace blink |
| 116 | 114 |
| 117 #endif // SKY_ENGINE_WEB_CHROMECLIENTIMPL_H_ | 115 #endif // SKY_ENGINE_WEB_CHROMECLIENTIMPL_H_ |
| OLD | NEW |