OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2009, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009, 2011 Apple Inc. All rights reserved. |
3 * Copyright (C) 2008, 2010 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2008, 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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 { | 332 { |
333 m_client->enumerateChosenDirectory(fileChooser); | 333 m_client->enumerateChosenDirectory(fileChooser); |
334 } | 334 } |
335 | 335 |
336 PassOwnPtr<ColorChooser> Chrome::createColorChooser(LocalFrame* frame, ColorChoo
serClient* client, const Color& initialColor) | 336 PassOwnPtr<ColorChooser> Chrome::createColorChooser(LocalFrame* frame, ColorChoo
serClient* client, const Color& initialColor) |
337 { | 337 { |
338 notifyPopupOpeningObservers(); | 338 notifyPopupOpeningObservers(); |
339 return m_client->createColorChooser(frame, client, initialColor); | 339 return m_client->createColorChooser(frame, client, initialColor); |
340 } | 340 } |
341 | 341 |
342 PassRefPtr<DateTimeChooser> Chrome::openDateTimeChooser(DateTimeChooserClient* c
lient, const DateTimeChooserParameters& parameters) | 342 PassRefPtrWillBeRawPtr<DateTimeChooser> Chrome::openDateTimeChooser(DateTimeChoo
serClient* client, const DateTimeChooserParameters& parameters) |
343 { | 343 { |
344 notifyPopupOpeningObservers(); | 344 notifyPopupOpeningObservers(); |
345 return m_client->openDateTimeChooser(client, parameters); | 345 return m_client->openDateTimeChooser(client, parameters); |
346 } | 346 } |
347 | 347 |
348 void Chrome::openTextDataListChooser(HTMLInputElement& input) | 348 void Chrome::openTextDataListChooser(HTMLInputElement& input) |
349 { | 349 { |
350 notifyPopupOpeningObservers(); | 350 notifyPopupOpeningObservers(); |
351 m_client->openTextDataListChooser(input); | 351 m_client->openTextDataListChooser(input); |
352 } | 352 } |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
405 for (size_t i = 0; i < observers.size(); ++i) | 405 for (size_t i = 0; i < observers.size(); ++i) |
406 observers[i]->willOpenPopup(); | 406 observers[i]->willOpenPopup(); |
407 } | 407 } |
408 | 408 |
409 void Chrome::willBeDestroyed() | 409 void Chrome::willBeDestroyed() |
410 { | 410 { |
411 m_client->chromeDestroyed(); | 411 m_client->chromeDestroyed(); |
412 } | 412 } |
413 | 413 |
414 } // namespace WebCore | 414 } // namespace WebCore |
OLD | NEW |