| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 void closeWindowSoon() override; | 103 void closeWindowSoon() override; |
| 104 bool openJavaScriptAlertDelegate(LocalFrame*, const String&) override; | 104 bool openJavaScriptAlertDelegate(LocalFrame*, const String&) override; |
| 105 bool openJavaScriptConfirmDelegate(LocalFrame*, const String&) override; | 105 bool openJavaScriptConfirmDelegate(LocalFrame*, const String&) override; |
| 106 bool openJavaScriptPromptDelegate(LocalFrame*, | 106 bool openJavaScriptPromptDelegate(LocalFrame*, |
| 107 const String& message, | 107 const String& message, |
| 108 const String& defaultValue, | 108 const String& defaultValue, |
| 109 String& result) override; | 109 String& result) override; |
| 110 void setStatusbarText(const String& message) override; | 110 void setStatusbarText(const String& message) override; |
| 111 bool tabsToLinks() override; | 111 bool tabsToLinks() override; |
| 112 void invalidateRect(const IntRect&) override; | 112 void invalidateRect(const IntRect&) override; |
| 113 void scheduleAnimation(Widget*) override; | 113 void scheduleAnimation(FrameViewBase*) override; |
| 114 IntRect viewportToScreen(const IntRect&, const Widget*) const override; | 114 IntRect viewportToScreen(const IntRect&, const FrameViewBase*) const override; |
| 115 float windowToViewportScalar(const float) const override; | 115 float windowToViewportScalar(const float) const override; |
| 116 WebScreenInfo screenInfo() const override; | 116 WebScreenInfo screenInfo() const override; |
| 117 WTF::Optional<IntRect> visibleContentRectForPainting() const override; | 117 WTF::Optional<IntRect> visibleContentRectForPainting() const override; |
| 118 void contentsSizeChanged(LocalFrame*, const IntSize&) const override; | 118 void contentsSizeChanged(LocalFrame*, const IntSize&) const override; |
| 119 void pageScaleFactorChanged() const override; | 119 void pageScaleFactorChanged() const override; |
| 120 float clampPageScaleFactorToLimits(float scale) const override; | 120 float clampPageScaleFactorToLimits(float scale) const override; |
| 121 void mainFrameScrollOffsetChanged() const override; | 121 void mainFrameScrollOffsetChanged() const override; |
| 122 void layoutUpdated(LocalFrame*) const override; | 122 void layoutUpdated(LocalFrame*) const override; |
| 123 void showMouseOverURL(const HitTestResult&) override; | 123 void showMouseOverURL(const HitTestResult&) override; |
| 124 void setToolTip(LocalFrame&, const String&, TextDirection) override; | 124 void setToolTip(LocalFrame&, const String&, TextDirection) override; |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 | 251 |
| 252 DEFINE_TYPE_CASTS(ChromeClientImpl, | 252 DEFINE_TYPE_CASTS(ChromeClientImpl, |
| 253 ChromeClient, | 253 ChromeClient, |
| 254 client, | 254 client, |
| 255 client->isChromeClientImpl(), | 255 client->isChromeClientImpl(), |
| 256 client.isChromeClientImpl()); | 256 client.isChromeClientImpl()); |
| 257 | 257 |
| 258 } // namespace blink | 258 } // namespace blink |
| 259 | 259 |
| 260 #endif | 260 #endif |
| OLD | NEW |