| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 virtual WebScreenInfo screenInfo() const override; | 114 virtual WebScreenInfo screenInfo() const override; |
| 115 virtual void contentsSizeChanged(LocalFrame*, const IntSize&) const override
; | 115 virtual void contentsSizeChanged(LocalFrame*, const IntSize&) const override
; |
| 116 virtual void pageScaleFactorChanged() const override; | 116 virtual void pageScaleFactorChanged() const override; |
| 117 virtual float clampPageScaleFactorToLimits(float scale) const override; | 117 virtual float clampPageScaleFactorToLimits(float scale) const override; |
| 118 virtual void layoutUpdated(LocalFrame*) const override; | 118 virtual void layoutUpdated(LocalFrame*) const override; |
| 119 virtual void mouseDidMoveOverElement(const HitTestResult&) override; | 119 virtual void mouseDidMoveOverElement(const HitTestResult&) override; |
| 120 virtual void setToolTip(const WTF::String& tooltipText, TextDirection) overr
ide; | 120 virtual void setToolTip(const WTF::String& tooltipText, TextDirection) overr
ide; |
| 121 virtual void dispatchViewportPropertiesDidChange(const ViewportDescription&)
const override; | 121 virtual void dispatchViewportPropertiesDidChange(const ViewportDescription&)
const override; |
| 122 virtual void print(LocalFrame*) override; | 122 virtual void print(LocalFrame*) override; |
| 123 virtual void annotatedRegionsChanged() override; | 123 virtual void annotatedRegionsChanged() override; |
| 124 virtual bool paintCustomOverhangArea(GraphicsContext*, const IntRect&, const
IntRect&, const IntRect&) override; | |
| 125 virtual PassOwnPtrWillBeRawPtr<ColorChooser> createColorChooser(LocalFrame*,
ColorChooserClient*, const Color&) override; | 124 virtual PassOwnPtrWillBeRawPtr<ColorChooser> createColorChooser(LocalFrame*,
ColorChooserClient*, const Color&) override; |
| 126 virtual PassRefPtr<DateTimeChooser> openDateTimeChooser(DateTimeChooserClien
t*, const DateTimeChooserParameters&) override; | 125 virtual PassRefPtr<DateTimeChooser> openDateTimeChooser(DateTimeChooserClien
t*, const DateTimeChooserParameters&) override; |
| 127 virtual void runOpenPanel(LocalFrame*, PassRefPtr<FileChooser>) override; | 126 virtual void runOpenPanel(LocalFrame*, PassRefPtr<FileChooser>) override; |
| 128 virtual void enumerateChosenDirectory(FileChooser*) override; | 127 virtual void enumerateChosenDirectory(FileChooser*) override; |
| 129 virtual void setCursor(const Cursor&) override; | 128 virtual void setCursor(const Cursor&) override; |
| 130 virtual void needTouchEvents(bool needTouchEvents) override; | 129 virtual void needTouchEvents(bool needTouchEvents) override; |
| 131 virtual void setTouchAction(TouchAction) override; | 130 virtual void setTouchAction(TouchAction) override; |
| 132 | 131 |
| 133 virtual GraphicsLayerFactory* graphicsLayerFactory() const override; | 132 virtual GraphicsLayerFactory* graphicsLayerFactory() const override; |
| 134 | 133 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 WindowFeatures m_windowFeatures; | 191 WindowFeatures m_windowFeatures; |
| 193 | 192 |
| 194 PagePopupDriver* m_pagePopupDriver; | 193 PagePopupDriver* m_pagePopupDriver; |
| 195 }; | 194 }; |
| 196 | 195 |
| 197 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); | 196 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); |
| 198 | 197 |
| 199 } // namespace blink | 198 } // namespace blink |
| 200 | 199 |
| 201 #endif | 200 #endif |
| OLD | NEW |