| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 void contentsSizeChanged(LocalFrame*, const IntSize&) const override; | 100 void contentsSizeChanged(LocalFrame*, const IntSize&) const override; |
| 101 void pageScaleFactorChanged() const override; | 101 void pageScaleFactorChanged() const override; |
| 102 float clampPageScaleFactorToLimits(float scale) const override; | 102 float clampPageScaleFactorToLimits(float scale) const override; |
| 103 void layoutUpdated(LocalFrame*) const override; | 103 void layoutUpdated(LocalFrame*) const override; |
| 104 void showMouseOverURL(const HitTestResult&) override; | 104 void showMouseOverURL(const HitTestResult&) override; |
| 105 void setToolTip(const String& tooltipText, TextDirection) override; | 105 void setToolTip(const String& tooltipText, TextDirection) override; |
| 106 void dispatchViewportPropertiesDidChange(const ViewportDescription&) const o
verride; | 106 void dispatchViewportPropertiesDidChange(const ViewportDescription&) const o
verride; |
| 107 void printDelegate(LocalFrame*) override; | 107 void printDelegate(LocalFrame*) override; |
| 108 void annotatedRegionsChanged() override; | 108 void annotatedRegionsChanged() override; |
| 109 PassOwnPtrWillBeRawPtr<ColorChooser> openColorChooser(LocalFrame*, ColorChoo
serClient*, const Color&) override; | 109 PassOwnPtrWillBeRawPtr<ColorChooser> openColorChooser(LocalFrame*, ColorChoo
serClient*, const Color&) override; |
| 110 PassRefPtr<DateTimeChooser> openDateTimeChooser(DateTimeChooserClient*, cons
t DateTimeChooserParameters&) override; | 110 PassRefPtrWillBeRawPtr<DateTimeChooser> openDateTimeChooser(DateTimeChooserC
lient*, const DateTimeChooserParameters&) override; |
| 111 void openFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override; | 111 void openFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override; |
| 112 void enumerateChosenDirectory(FileChooser*) override; | 112 void enumerateChosenDirectory(FileChooser*) override; |
| 113 void setCursor(const Cursor&, LocalFrame* localRoot) override; | 113 void setCursor(const Cursor&, LocalFrame* localRoot) override; |
| 114 Cursor lastSetCursorForTesting() const override; | 114 Cursor lastSetCursorForTesting() const override; |
| 115 void needTouchEvents(bool needTouchEvents) override; | 115 void needTouchEvents(bool needTouchEvents) override; |
| 116 void setTouchAction(TouchAction) override; | 116 void setTouchAction(TouchAction) override; |
| 117 | 117 |
| 118 GraphicsLayerFactory* graphicsLayerFactory() const override; | 118 GraphicsLayerFactory* graphicsLayerFactory() const override; |
| 119 | 119 |
| 120 // Pass 0 as the GraphicsLayer to detatch the root layer. | 120 // Pass 0 as the GraphicsLayer to detatch the root layer. |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 Vector<PopupOpeningObserver*> m_popupOpeningObservers; | 190 Vector<PopupOpeningObserver*> m_popupOpeningObservers; |
| 191 Cursor m_lastSetMouseCursorForTesting; | 191 Cursor m_lastSetMouseCursorForTesting; |
| 192 bool m_cursorOverridden; | 192 bool m_cursorOverridden; |
| 193 }; | 193 }; |
| 194 | 194 |
| 195 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); | 195 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); |
| 196 | 196 |
| 197 } // namespace blink | 197 } // namespace blink |
| 198 | 198 |
| 199 #endif | 199 #endif |
| OLD | NEW |