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

Side by Side Diff: third_party/WebKit/Source/core/loader/EmptyClients.cpp

Issue 1432243003: Oilpan: move DateTimeChooser to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) Research In Motion Limited 2011. All rights reserved. 4 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 PassRefPtrWillBeRawPtr<PopupMenu> EmptyChromeClient::openPopupMenu(LocalFrame&, HTMLSelectElement&) 91 PassRefPtrWillBeRawPtr<PopupMenu> EmptyChromeClient::openPopupMenu(LocalFrame&, HTMLSelectElement&)
92 { 92 {
93 return adoptRefWillBeNoop(new EmptyPopupMenu()); 93 return adoptRefWillBeNoop(new EmptyPopupMenu());
94 } 94 }
95 95
96 PassOwnPtrWillBeRawPtr<ColorChooser> EmptyChromeClient::openColorChooser(LocalFr ame*, ColorChooserClient*, const Color&) 96 PassOwnPtrWillBeRawPtr<ColorChooser> EmptyChromeClient::openColorChooser(LocalFr ame*, ColorChooserClient*, const Color&)
97 { 97 {
98 return nullptr; 98 return nullptr;
99 } 99 }
100 100
101 PassRefPtr<DateTimeChooser> EmptyChromeClient::openDateTimeChooser(DateTimeChoos erClient*, const DateTimeChooserParameters&) 101 PassRefPtrWillBeRawPtr<DateTimeChooser> EmptyChromeClient::openDateTimeChooser(D ateTimeChooserClient*, const DateTimeChooserParameters&)
102 { 102 {
103 return PassRefPtr<DateTimeChooser>(); 103 return nullptr;
104 } 104 }
105 105
106 void EmptyChromeClient::openTextDataListChooser(HTMLInputElement&) 106 void EmptyChromeClient::openTextDataListChooser(HTMLInputElement&)
107 { 107 {
108 } 108 }
109 109
110 void EmptyChromeClient::openFileChooser(LocalFrame*, PassRefPtr<FileChooser>) 110 void EmptyChromeClient::openFileChooser(LocalFrame*, PassRefPtr<FileChooser>)
111 { 111 {
112 } 112 }
113 113
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 { 181 {
182 return nullptr; 182 return nullptr;
183 } 183 }
184 184
185 PassOwnPtr<WebApplicationCacheHost> EmptyFrameLoaderClient::createApplicationCac heHost(WebApplicationCacheHostClient*) 185 PassOwnPtr<WebApplicationCacheHost> EmptyFrameLoaderClient::createApplicationCac heHost(WebApplicationCacheHostClient*)
186 { 186 {
187 return nullptr; 187 return nullptr;
188 } 188 }
189 189
190 } // namespace blink 190 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/EmptyClients.h ('k') | third_party/WebKit/Source/core/page/ChromeClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698