| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * 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 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 850 if (m_webView->autofillClient()) | 850 if (m_webView->autofillClient()) |
| 851 m_webView->autofillClient()->textFieldDidEndEditing(WebInputElement(&inp
utElement)); | 851 m_webView->autofillClient()->textFieldDidEndEditing(WebInputElement(&inp
utElement)); |
| 852 } | 852 } |
| 853 | 853 |
| 854 void ChromeClientImpl::openTextDataListChooser(HTMLInputElement& input) | 854 void ChromeClientImpl::openTextDataListChooser(HTMLInputElement& input) |
| 855 { | 855 { |
| 856 if (m_webView->autofillClient()) | 856 if (m_webView->autofillClient()) |
| 857 m_webView->autofillClient()->openTextDataListChooser(WebInputElement(&in
put)); | 857 m_webView->autofillClient()->openTextDataListChooser(WebInputElement(&in
put)); |
| 858 } | 858 } |
| 859 | 859 |
| 860 bool ChromeClientImpl::shouldDisableDesktopWorkarounds() |
| 861 { |
| 862 return m_webView->shouldDisableDesktopWorkarounds(); |
| 863 } |
| 864 |
| 860 } // namespace blink | 865 } // namespace blink |
| OLD | NEW |