Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(482)

Side by Side Diff: Source/core/page/Chrome.cpp

Issue 275043002: Oilpan: Prepare moving DateTimeChooser to Oilpan (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: export DummyBase Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/page/Chrome.h ('k') | Source/core/page/ChromeClient.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/page/Chrome.h ('k') | Source/core/page/ChromeClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698