| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 bool CanOpenBeforeUnloadConfirmPanel() override; | 101 bool CanOpenBeforeUnloadConfirmPanel() override; |
| 102 bool OpenBeforeUnloadConfirmPanelDelegate(LocalFrame*, | 102 bool OpenBeforeUnloadConfirmPanelDelegate(LocalFrame*, |
| 103 bool is_reload) override; | 103 bool is_reload) override; |
| 104 void CloseWindowSoon() override; | 104 void CloseWindowSoon() override; |
| 105 bool OpenJavaScriptAlertDelegate(LocalFrame*, const String&) override; | 105 bool OpenJavaScriptAlertDelegate(LocalFrame*, const String&) override; |
| 106 bool OpenJavaScriptConfirmDelegate(LocalFrame*, const String&) override; | 106 bool OpenJavaScriptConfirmDelegate(LocalFrame*, const String&) override; |
| 107 bool OpenJavaScriptPromptDelegate(LocalFrame*, | 107 bool OpenJavaScriptPromptDelegate(LocalFrame*, |
| 108 const String& message, | 108 const String& message, |
| 109 const String& default_value, | 109 const String& default_value, |
| 110 String& result) override; | 110 String& result) override; |
| 111 void SetStatusbarText(const String& message) override; | |
| 112 bool TabsToLinks() override; | 111 bool TabsToLinks() override; |
| 113 void InvalidateRect(const IntRect&) override; | 112 void InvalidateRect(const IntRect&) override; |
| 114 void ScheduleAnimation(const PlatformFrameView*) override; | 113 void ScheduleAnimation(const PlatformFrameView*) override; |
| 115 IntRect ViewportToScreen(const IntRect&, | 114 IntRect ViewportToScreen(const IntRect&, |
| 116 const PlatformFrameView*) const override; | 115 const PlatformFrameView*) const override; |
| 117 float WindowToViewportScalar(const float) const override; | 116 float WindowToViewportScalar(const float) const override; |
| 118 WebScreenInfo GetScreenInfo() const override; | 117 WebScreenInfo GetScreenInfo() const override; |
| 119 WTF::Optional<IntRect> VisibleContentRectForPainting() const override; | 118 WTF::Optional<IntRect> VisibleContentRectForPainting() const override; |
| 120 void ContentsSizeChanged(LocalFrame*, const IntSize&) const override; | 119 void ContentsSizeChanged(LocalFrame*, const IntSize&) const override; |
| 121 void PageScaleFactorChanged() const override; | 120 void PageScaleFactorChanged() const override; |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 | 257 |
| 259 DEFINE_TYPE_CASTS(ChromeClientImpl, | 258 DEFINE_TYPE_CASTS(ChromeClientImpl, |
| 260 ChromeClient, | 259 ChromeClient, |
| 261 client, | 260 client, |
| 262 client->IsChromeClientImpl(), | 261 client->IsChromeClientImpl(), |
| 263 client.IsChromeClientImpl()); | 262 client.IsChromeClientImpl()); |
| 264 | 263 |
| 265 } // namespace blink | 264 } // namespace blink |
| 266 | 265 |
| 267 #endif | 266 #endif |
| OLD | NEW |