| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 scheduleAnimation() override; | 78 virtual void scheduleAnimation() override; |
| 79 virtual IntRect rootViewToScreen(const IntRect&) const override; | 79 virtual IntRect rootViewToScreen(const IntRect&) const override; |
| 80 virtual WebScreenInfo screenInfo() const override; | 80 virtual WebScreenInfo screenInfo() const override; |
| 81 virtual void layoutUpdated(LocalFrame*) const override; | 81 virtual void layoutUpdated(LocalFrame*) const override; |
| 82 virtual void mouseDidMoveOverElement( | 82 virtual void mouseDidMoveOverElement( |
| 83 const HitTestResult&, unsigned modifierFlags) override; | 83 const HitTestResult&, unsigned modifierFlags) override; |
| 84 virtual void setToolTip(const WTF::String& tooltipText, TextDirection) overr
ide; | |
| 85 virtual void setCursor(const Cursor&) override; | 84 virtual void setCursor(const Cursor&) override; |
| 86 virtual void setTouchAction(TouchAction) override; | 85 virtual void setTouchAction(TouchAction) override; |
| 87 | 86 |
| 88 // ChromeClient methods: | 87 // ChromeClient methods: |
| 89 virtual String acceptLanguages() override; | 88 virtual String acceptLanguages() override; |
| 90 | 89 |
| 91 // ChromeClientImpl: | 90 // ChromeClientImpl: |
| 92 void setNewWindowNavigationPolicy(WebNavigationPolicy); | 91 void setNewWindowNavigationPolicy(WebNavigationPolicy); |
| 93 | 92 |
| 94 // FIXME: Remove this method once we have input routing in the browser | 93 // FIXME: Remove this method once we have input routing in the browser |
| (...skipping 11 matching lines...) Expand all Loading... |
| 106 void setCursor(const WebCursorInfo&); | 105 void setCursor(const WebCursorInfo&); |
| 107 | 106 |
| 108 WebViewImpl* m_webView; // weak pointer | 107 WebViewImpl* m_webView; // weak pointer |
| 109 }; | 108 }; |
| 110 | 109 |
| 111 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); | 110 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); |
| 112 | 111 |
| 113 } // namespace blink | 112 } // namespace blink |
| 114 | 113 |
| 115 #endif // SKY_ENGINE_WEB_CHROMECLIENTIMPL_H_ | 114 #endif // SKY_ENGINE_WEB_CHROMECLIENTIMPL_H_ |
| OLD | NEW |