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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 { | 334 { |
335 m_client->enumerateChosenDirectory(fileChooser); | 335 m_client->enumerateChosenDirectory(fileChooser); |
336 } | 336 } |
337 | 337 |
338 PassOwnPtr<ColorChooser> Chrome::createColorChooser(LocalFrame* frame, ColorChoo
serClient* client, const Color& initialColor) | 338 PassOwnPtr<ColorChooser> Chrome::createColorChooser(LocalFrame* frame, ColorChoo
serClient* client, const Color& initialColor) |
339 { | 339 { |
340 notifyPopupOpeningObservers(); | 340 notifyPopupOpeningObservers(); |
341 return m_client->createColorChooser(frame, client, initialColor); | 341 return m_client->createColorChooser(frame, client, initialColor); |
342 } | 342 } |
343 | 343 |
344 PassRefPtr<DateTimeChooser> Chrome::openDateTimeChooser(DateTimeChooserClient* c
lient, const DateTimeChooserParameters& parameters) | 344 PassRefPtrWillBeRawPtr<DateTimeChooser> Chrome::openDateTimeChooser(DateTimeChoo
serClient* client, const DateTimeChooserParameters& parameters) |
345 { | 345 { |
346 notifyPopupOpeningObservers(); | 346 notifyPopupOpeningObservers(); |
347 return m_client->openDateTimeChooser(client, parameters); | 347 return m_client->openDateTimeChooser(client, parameters); |
348 } | 348 } |
349 | 349 |
350 void Chrome::openTextDataListChooser(HTMLInputElement& input) | 350 void Chrome::openTextDataListChooser(HTMLInputElement& input) |
351 { | 351 { |
352 notifyPopupOpeningObservers(); | 352 notifyPopupOpeningObservers(); |
353 m_client->openTextDataListChooser(input); | 353 m_client->openTextDataListChooser(input); |
354 } | 354 } |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 for (size_t i = 0; i < observers.size(); ++i) | 407 for (size_t i = 0; i < observers.size(); ++i) |
408 observers[i]->willOpenPopup(); | 408 observers[i]->willOpenPopup(); |
409 } | 409 } |
410 | 410 |
411 void Chrome::willBeDestroyed() | 411 void Chrome::willBeDestroyed() |
412 { | 412 { |
413 m_client->chromeDestroyed(); | 413 m_client->chromeDestroyed(); |
414 } | 414 } |
415 | 415 |
416 } // namespace WebCore | 416 } // namespace WebCore |
OLD | NEW |