| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 bool isReload) override; | 102 bool isReload) override; |
| 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 IntRect windowResizerRect(LocalFrame&) const override; | |
| 113 void invalidateRect(const IntRect&) override; | 112 void invalidateRect(const IntRect&) override; |
| 114 void scheduleAnimation(Widget*) override; | 113 void scheduleAnimation(Widget*) override; |
| 115 IntRect viewportToScreen(const IntRect&, const Widget*) const override; | 114 IntRect viewportToScreen(const IntRect&, const Widget*) const override; |
| 116 float windowToViewportScalar(const float) const override; | 115 float windowToViewportScalar(const float) const override; |
| 117 WebScreenInfo screenInfo() const override; | 116 WebScreenInfo screenInfo() const override; |
| 118 WTF::Optional<IntRect> visibleContentRectForPainting() const override; | 117 WTF::Optional<IntRect> visibleContentRectForPainting() const override; |
| 119 void contentsSizeChanged(LocalFrame*, const IntSize&) const override; | 118 void contentsSizeChanged(LocalFrame*, const IntSize&) const override; |
| 120 void pageScaleFactorChanged() const override; | 119 void pageScaleFactorChanged() const override; |
| 121 float clampPageScaleFactorToLimits(float scale) const override; | 120 float clampPageScaleFactorToLimits(float scale) const override; |
| 122 void mainFrameScrollOffsetChanged() const override; | 121 void mainFrameScrollOffsetChanged() const override; |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 | 238 |
| 240 DEFINE_TYPE_CASTS(ChromeClientImpl, | 239 DEFINE_TYPE_CASTS(ChromeClientImpl, |
| 241 ChromeClient, | 240 ChromeClient, |
| 242 client, | 241 client, |
| 243 client->isChromeClientImpl(), | 242 client->isChromeClientImpl(), |
| 244 client.isChromeClientImpl()); | 243 client.isChromeClientImpl()); |
| 245 | 244 |
| 246 } // namespace blink | 245 } // namespace blink |
| 247 | 246 |
| 248 #endif | 247 #endif |
| OLD | NEW |