| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |