| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 bool openJavaScriptAlertDelegate(LocalFrame*, const String&) override; | 87 bool openJavaScriptAlertDelegate(LocalFrame*, const String&) override; |
| 88 bool openJavaScriptConfirmDelegate(LocalFrame*, const String&) override; | 88 bool openJavaScriptConfirmDelegate(LocalFrame*, const String&) override; |
| 89 bool openJavaScriptPromptDelegate( | 89 bool openJavaScriptPromptDelegate( |
| 90 LocalFrame*, const String& message, | 90 LocalFrame*, const String& message, |
| 91 const String& defaultValue, String& result) override; | 91 const String& defaultValue, String& result) override; |
| 92 void setStatusbarText(const String& message) override; | 92 void setStatusbarText(const String& message) override; |
| 93 bool tabsToLinks() override; | 93 bool tabsToLinks() override; |
| 94 IntRect windowResizerRect() const override; | 94 IntRect windowResizerRect() const override; |
| 95 void invalidateRect(const IntRect&) override; | 95 void invalidateRect(const IntRect&) override; |
| 96 void scheduleAnimation(Widget*) override; | 96 void scheduleAnimation(Widget*) override; |
| 97 IntRect viewportToScreen(const IntRect&) const override; | 97 IntRect viewportToScreen(const IntRect&, const Widget*) const override; |
| 98 float windowToViewportScalar(const float) const override; | 98 float windowToViewportScalar(const float) const override; |
| 99 WebScreenInfo screenInfo() const override; | 99 WebScreenInfo screenInfo() const override; |
| 100 void contentsSizeChanged(LocalFrame*, const IntSize&) const override; | 100 void contentsSizeChanged(LocalFrame*, const IntSize&) const override; |
| 101 void pageScaleFactorChanged() const override; | 101 void pageScaleFactorChanged() const override; |
| 102 float clampPageScaleFactorToLimits(float scale) const override; | 102 float clampPageScaleFactorToLimits(float scale) const override; |
| 103 void layoutUpdated(LocalFrame*) const override; | 103 void layoutUpdated(LocalFrame*) const override; |
| 104 void showMouseOverURL(const HitTestResult&) override; | 104 void showMouseOverURL(const HitTestResult&) override; |
| 105 void setToolTip(const String& tooltipText, TextDirection) override; | 105 void setToolTip(const String& tooltipText, TextDirection) override; |
| 106 void dispatchViewportPropertiesDidChange(const ViewportDescription&) const o
verride; | 106 void dispatchViewportPropertiesDidChange(const ViewportDescription&) const o
verride; |
| 107 void printDelegate(LocalFrame*) override; | 107 void printDelegate(LocalFrame*) override; |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 Cursor m_lastSetMouseCursorForTesting; | 194 Cursor m_lastSetMouseCursorForTesting; |
| 195 bool m_cursorOverridden; | 195 bool m_cursorOverridden; |
| 196 bool m_didRequestNonEmptyToolTip; | 196 bool m_didRequestNonEmptyToolTip; |
| 197 }; | 197 }; |
| 198 | 198 |
| 199 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); | 199 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); |
| 200 | 200 |
| 201 } // namespace blink | 201 } // namespace blink |
| 202 | 202 |
| 203 #endif | 203 #endif |
| OLD | NEW |