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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 void PageScaleFactorChanged() const override; | 111 void PageScaleFactorChanged() const override; |
112 float ClampPageScaleFactorToLimits(float scale) const override; | 112 float ClampPageScaleFactorToLimits(float scale) const override; |
113 void MainFrameScrollOffsetChanged() const override; | 113 void MainFrameScrollOffsetChanged() const override; |
114 void ResizeAfterLayout() const override; | 114 void ResizeAfterLayout() const override; |
115 void LayoutUpdated() const override; | 115 void LayoutUpdated() const override; |
116 void ShowMouseOverURL(const HitTestResult&) override; | 116 void ShowMouseOverURL(const HitTestResult&) override; |
117 void SetToolTip(LocalFrame&, const String&, TextDirection) override; | 117 void SetToolTip(LocalFrame&, const String&, TextDirection) override; |
118 void DispatchViewportPropertiesDidChange( | 118 void DispatchViewportPropertiesDidChange( |
119 const ViewportDescription&) const override; | 119 const ViewportDescription&) const override; |
120 void PrintDelegate(LocalFrame*) override; | 120 void PrintDelegate(LocalFrame*) override; |
121 void AnnotatedRegionsChanged() override; | |
122 ColorChooser* OpenColorChooser(LocalFrame*, | 121 ColorChooser* OpenColorChooser(LocalFrame*, |
123 ColorChooserClient*, | 122 ColorChooserClient*, |
124 const Color&) override; | 123 const Color&) override; |
125 DateTimeChooser* OpenDateTimeChooser( | 124 DateTimeChooser* OpenDateTimeChooser( |
126 DateTimeChooserClient*, | 125 DateTimeChooserClient*, |
127 const DateTimeChooserParameters&) override; | 126 const DateTimeChooserParameters&) override; |
128 void OpenFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override; | 127 void OpenFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override; |
129 void EnumerateChosenDirectory(FileChooser*) override; | 128 void EnumerateChosenDirectory(FileChooser*) override; |
130 void SetCursor(const Cursor&, LocalFrame*) override; | 129 void SetCursor(const Cursor&, LocalFrame*) override; |
131 void SetCursorOverridden(bool) override; | 130 void SetCursorOverridden(bool) override; |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 | 252 |
254 DEFINE_TYPE_CASTS(ChromeClientImpl, | 253 DEFINE_TYPE_CASTS(ChromeClientImpl, |
255 ChromeClient, | 254 ChromeClient, |
256 client, | 255 client, |
257 client->IsChromeClientImpl(), | 256 client->IsChromeClientImpl(), |
258 client.IsChromeClientImpl()); | 257 client.IsChromeClientImpl()); |
259 | 258 |
260 } // namespace blink | 259 } // namespace blink |
261 | 260 |
262 #endif | 261 #endif |
OLD | NEW |