| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, 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 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 virtual bool paintCustomOverhangArea(GraphicsContext*, const IntRect&, const
IntRect&, const IntRect&) = 0; | 169 virtual bool paintCustomOverhangArea(GraphicsContext*, const IntRect&, const
IntRect&, const IntRect&) = 0; |
| 170 | 170 |
| 171 virtual PassOwnPtr<ColorChooser> createColorChooser(LocalFrame*, ColorChoose
rClient*, const Color&) = 0; | 171 virtual PassOwnPtr<ColorChooser> createColorChooser(LocalFrame*, ColorChoose
rClient*, const Color&) = 0; |
| 172 | 172 |
| 173 // This function is used for: | 173 // This function is used for: |
| 174 // - Mandatory date/time choosers if !ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 174 // - Mandatory date/time choosers if !ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
| 175 // - Date/time choosers for types for which RenderTheme::supportsCalendarPi
cker | 175 // - Date/time choosers for types for which RenderTheme::supportsCalendarPi
cker |
| 176 // returns true, if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 176 // returns true, if ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
| 177 // - <datalist> UI for date/time input types regardless of | 177 // - <datalist> UI for date/time input types regardless of |
| 178 // ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 178 // ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
| 179 virtual PassRefPtr<DateTimeChooser> openDateTimeChooser(DateTimeChooserClien
t*, const DateTimeChooserParameters&) = 0; | 179 virtual PassRefPtrWillBeRawPtr<DateTimeChooser> openDateTimeChooser(DateTime
ChooserClient*, const DateTimeChooserParameters&) = 0; |
| 180 | 180 |
| 181 virtual void openTextDataListChooser(HTMLInputElement&) = 0; | 181 virtual void openTextDataListChooser(HTMLInputElement&) = 0; |
| 182 | 182 |
| 183 virtual void runOpenPanel(LocalFrame*, PassRefPtr<FileChooser>) = 0; | 183 virtual void runOpenPanel(LocalFrame*, PassRefPtr<FileChooser>) = 0; |
| 184 | 184 |
| 185 // Asychronous request to enumerate all files in a directory chosen by the u
ser. | 185 // Asychronous request to enumerate all files in a directory chosen by the u
ser. |
| 186 virtual void enumerateChosenDirectory(FileChooser*) = 0; | 186 virtual void enumerateChosenDirectory(FileChooser*) = 0; |
| 187 | 187 |
| 188 // Allows ports to customize the type of graphics layers created by this pag
e. | 188 // Allows ports to customize the type of graphics layers created by this pag
e. |
| 189 virtual GraphicsLayerFactory* graphicsLayerFactory() const { return 0; } | 189 virtual GraphicsLayerFactory* graphicsLayerFactory() const { return 0; } |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 virtual void didCancelCompositionOnSelectionChange() { } | 240 virtual void didCancelCompositionOnSelectionChange() { } |
| 241 virtual void willSetInputMethodState() { } | 241 virtual void willSetInputMethodState() { } |
| 242 virtual void didUpdateTextOfFocusedElementByNonUserInput() { } | 242 virtual void didUpdateTextOfFocusedElementByNonUserInput() { } |
| 243 | 243 |
| 244 protected: | 244 protected: |
| 245 virtual ~ChromeClient() { } | 245 virtual ~ChromeClient() { } |
| 246 }; | 246 }; |
| 247 | 247 |
| 248 } | 248 } |
| 249 #endif // ChromeClient_h | 249 #endif // ChromeClient_h |
| OLD | NEW |