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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 virtual bool shouldReplaceWithGeneratedFileForUpload(const String& path,
String& generatedFilename); | 220 virtual bool shouldReplaceWithGeneratedFileForUpload(const String& path,
String& generatedFilename); |
221 virtual String generateReplacementFile(const String& path); | 221 virtual String generateReplacementFile(const String& path); |
222 | 222 |
223 virtual bool paintCustomOverhangArea(GraphicsContext*, const IntRect&, c
onst IntRect&, const IntRect&); | 223 virtual bool paintCustomOverhangArea(GraphicsContext*, const IntRect&, c
onst IntRect&, const IntRect&); |
224 | 224 |
225 #if ENABLE(INPUT_TYPE_COLOR) | 225 #if ENABLE(INPUT_TYPE_COLOR) |
226 virtual PassOwnPtr<ColorChooser> createColorChooser(ColorChooserClient*,
const Color&) = 0; | 226 virtual PassOwnPtr<ColorChooser> createColorChooser(ColorChooserClient*,
const Color&) = 0; |
227 #endif | 227 #endif |
228 | 228 |
229 #if ENABLE(CALENDAR_PICKER) | 229 #if ENABLE(CALENDAR_PICKER) |
230 virtual PassOwnPtr<DateTimeChooser> openDateTimeChooser(DateTimeChooserC
lient*, const DateTimeChooserParameters&) = 0; | 230 virtual PassRefPtr<DateTimeChooser> openDateTimeChooser(DateTimeChooserC
lient*, const DateTimeChooserParameters&) = 0; |
231 #endif | 231 #endif |
232 | 232 |
233 virtual void runOpenPanel(Frame*, PassRefPtr<FileChooser>) = 0; | 233 virtual void runOpenPanel(Frame*, PassRefPtr<FileChooser>) = 0; |
234 // Asynchronous request to load an icon for specified filenames. | 234 // Asynchronous request to load an icon for specified filenames. |
235 virtual void loadIconForFiles(const Vector<String>&, FileIconLoader*) =
0; | 235 virtual void loadIconForFiles(const Vector<String>&, FileIconLoader*) =
0; |
236 | 236 |
237 #if ENABLE(DIRECTORY_UPLOAD) | 237 #if ENABLE(DIRECTORY_UPLOAD) |
238 // Asychronous request to enumerate all files in a directory chosen by t
he user. | 238 // Asychronous request to enumerate all files in a directory chosen by t
he user. |
239 virtual void enumerateChosenDirectory(FileChooser*) = 0; | 239 virtual void enumerateChosenDirectory(FileChooser*) = 0; |
240 #endif | 240 #endif |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 virtual void logDiagnosticMessage(const String& message, const String& d
escription, const String& status) { UNUSED_PARAM(message); UNUSED_PARAM(descript
ion); UNUSED_PARAM(status); } | 363 virtual void logDiagnosticMessage(const String& message, const String& d
escription, const String& status) { UNUSED_PARAM(message); UNUSED_PARAM(descript
ion); UNUSED_PARAM(status); } |
364 | 364 |
365 virtual FloatSize minimumWindowSize() const { return FloatSize(100, 100)
; }; | 365 virtual FloatSize minimumWindowSize() const { return FloatSize(100, 100)
; }; |
366 | 366 |
367 protected: | 367 protected: |
368 virtual ~ChromeClient() { } | 368 virtual ~ChromeClient() { } |
369 }; | 369 }; |
370 | 370 |
371 } | 371 } |
372 #endif // ChromeClient_h | 372 #endif // ChromeClient_h |
OLD | NEW |