| 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& default_value, | 108 const String& default_value, |
| 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(FrameViewBase*) override; | 113 void ScheduleAnimation(LocalFrame*) override; |
| 114 IntRect ViewportToScreen(const IntRect&, const FrameViewBase*) 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 GetScreenInfo() const override; | 116 WebScreenInfo GetScreenInfo() 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; |
| (...skipping 127 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 |