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

Side by Side Diff: Source/WebCore/loader/EmptyClients.h

Issue 11419080: Merge 132895 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1312/
Patch Set: Created 8 years, 1 month 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org)
3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 167
168 #if ENABLE(DIRECTORY_UPLOAD) 168 #if ENABLE(DIRECTORY_UPLOAD)
169 virtual void enumerateChosenDirectory(FileChooser*) { } 169 virtual void enumerateChosenDirectory(FileChooser*) { }
170 #endif 170 #endif
171 171
172 #if ENABLE(INPUT_TYPE_COLOR) 172 #if ENABLE(INPUT_TYPE_COLOR)
173 virtual PassOwnPtr<ColorChooser> createColorChooser(ColorChooserClient*, con st Color&) OVERRIDE; 173 virtual PassOwnPtr<ColorChooser> createColorChooser(ColorChooserClient*, con st Color&) OVERRIDE;
174 #endif 174 #endif
175 175
176 #if ENABLE(CALENDAR_PICKER) 176 #if ENABLE(CALENDAR_PICKER)
177 virtual PassOwnPtr<DateTimeChooser> openDateTimeChooser(DateTimeChooserClien t*, const DateTimeChooserParameters&) OVERRIDE; 177 virtual PassRefPtr<DateTimeChooser> openDateTimeChooser(DateTimeChooserClien t*, const DateTimeChooserParameters&) OVERRIDE;
178 #endif 178 #endif
179 179
180 virtual void runOpenPanel(Frame*, PassRefPtr<FileChooser>) OVERRIDE; 180 virtual void runOpenPanel(Frame*, PassRefPtr<FileChooser>) OVERRIDE;
181 virtual void loadIconForFiles(const Vector<String>&, FileIconLoader*) { } 181 virtual void loadIconForFiles(const Vector<String>&, FileIconLoader*) { }
182 182
183 virtual void formStateDidChange(const Node*) { } 183 virtual void formStateDidChange(const Node*) { }
184 184
185 virtual void elementDidFocus(const Node*) { } 185 virtual void elementDidFocus(const Node*) { }
186 virtual void elementDidBlur(const Node*) { } 186 virtual void elementDidBlur(const Node*) { }
187 187
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
587 virtual void stopUpdating() { } 587 virtual void stopUpdating() { }
588 virtual DeviceOrientationData* lastOrientation() const { return 0; } 588 virtual DeviceOrientationData* lastOrientation() const { return 0; }
589 virtual void deviceOrientationControllerDestroyed() { } 589 virtual void deviceOrientationControllerDestroyed() { }
590 }; 590 };
591 591
592 void fillWithEmptyClients(Page::PageClients&); 592 void fillWithEmptyClients(Page::PageClients&);
593 593
594 } 594 }
595 595
596 #endif // EmptyClients_h 596 #endif // EmptyClients_h
OLDNEW
« no previous file with comments | « Source/WebCore/html/shadow/PickerIndicatorElement.cpp ('k') | Source/WebCore/loader/EmptyClients.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698