| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 53 #include "core/loader/FrameLoadRequest.h" | 53 #include "core/loader/FrameLoadRequest.h" | 
| 54 #include "core/page/Page.h" | 54 #include "core/page/Page.h" | 
| 55 #include "core/page/PagePopupDriver.h" | 55 #include "core/page/PagePopupDriver.h" | 
| 56 #include "core/page/WindowFeatures.h" | 56 #include "core/page/WindowFeatures.h" | 
| 57 #include "core/rendering/HitTestResult.h" | 57 #include "core/rendering/HitTestResult.h" | 
| 58 #include "core/rendering/RenderPart.h" | 58 #include "core/rendering/RenderPart.h" | 
| 59 #include "core/rendering/RenderWidget.h" | 59 #include "core/rendering/RenderWidget.h" | 
| 60 #include "core/rendering/compositing/CompositedSelectionBound.h" | 60 #include "core/rendering/compositing/CompositedSelectionBound.h" | 
| 61 #include "platform/Cursor.h" | 61 #include "platform/Cursor.h" | 
| 62 #include "platform/FileChooser.h" | 62 #include "platform/FileChooser.h" | 
| 63 #include "platform/NotImplemented.h" |  | 
| 64 #include "platform/PlatformScreen.h" | 63 #include "platform/PlatformScreen.h" | 
| 65 #include "platform/RuntimeEnabledFeatures.h" | 64 #include "platform/RuntimeEnabledFeatures.h" | 
| 66 #include "platform/exported/WrappedResourceRequest.h" | 65 #include "platform/exported/WrappedResourceRequest.h" | 
| 67 #include "platform/geometry/FloatRect.h" | 66 #include "platform/geometry/FloatRect.h" | 
| 68 #include "platform/geometry/IntRect.h" | 67 #include "platform/geometry/IntRect.h" | 
| 69 #include "platform/graphics/GraphicsLayer.h" | 68 #include "platform/graphics/GraphicsLayer.h" | 
| 70 #include "platform/weborigin/SecurityOrigin.h" | 69 #include "platform/weborigin/SecurityOrigin.h" | 
| 71 #include "public/platform/Platform.h" | 70 #include "public/platform/Platform.h" | 
| 72 #include "public/platform/WebCursorInfo.h" | 71 #include "public/platform/WebCursorInfo.h" | 
| 73 #include "public/platform/WebRect.h" | 72 #include "public/platform/WebRect.h" | 
| (...skipping 814 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 888         m_webView->autofillClient()->textFieldDidEndEditing(WebInputElement(&inp
     utElement)); | 887         m_webView->autofillClient()->textFieldDidEndEditing(WebInputElement(&inp
     utElement)); | 
| 889 } | 888 } | 
| 890 | 889 | 
| 891 void ChromeClientImpl::openTextDataListChooser(HTMLInputElement& input) | 890 void ChromeClientImpl::openTextDataListChooser(HTMLInputElement& input) | 
| 892 { | 891 { | 
| 893     if (m_webView->autofillClient()) | 892     if (m_webView->autofillClient()) | 
| 894         m_webView->autofillClient()->openTextDataListChooser(WebInputElement(&in
     put)); | 893         m_webView->autofillClient()->openTextDataListChooser(WebInputElement(&in
     put)); | 
| 895 } | 894 } | 
| 896 | 895 | 
| 897 } // namespace blink | 896 } // namespace blink | 
| OLD | NEW | 
|---|