| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 #include "public/web/WebTouchAction.h" | 83 #include "public/web/WebTouchAction.h" |
| 84 #include "public/web/WebUserGestureIndicator.h" | 84 #include "public/web/WebUserGestureIndicator.h" |
| 85 #include "public/web/WebUserGestureToken.h" | 85 #include "public/web/WebUserGestureToken.h" |
| 86 #include "public/web/WebViewClient.h" | 86 #include "public/web/WebViewClient.h" |
| 87 #include "public/web/WebWindowFeatures.h" | 87 #include "public/web/WebWindowFeatures.h" |
| 88 #include "web/ColorChooserPopupUIController.h" | 88 #include "web/ColorChooserPopupUIController.h" |
| 89 #include "web/ColorChooserUIController.h" | 89 #include "web/ColorChooserUIController.h" |
| 90 #include "web/DateTimeChooserImpl.h" | 90 #include "web/DateTimeChooserImpl.h" |
| 91 #include "web/ExternalDateTimeChooser.h" | 91 #include "web/ExternalDateTimeChooser.h" |
| 92 #include "web/ExternalPopupMenu.h" | 92 #include "web/ExternalPopupMenu.h" |
| 93 #include "web/PopupMenuChromium.h" | |
| 94 #include "web/PopupMenuImpl.h" | 93 #include "web/PopupMenuImpl.h" |
| 95 #include "web/WebFileChooserCompletionImpl.h" | 94 #include "web/WebFileChooserCompletionImpl.h" |
| 96 #include "web/WebInputEventConversion.h" | 95 #include "web/WebInputEventConversion.h" |
| 97 #include "web/WebLocalFrameImpl.h" | 96 #include "web/WebLocalFrameImpl.h" |
| 98 #include "web/WebPluginContainerImpl.h" | 97 #include "web/WebPluginContainerImpl.h" |
| 99 #include "web/WebPopupMenuImpl.h" | |
| 100 #include "web/WebSettingsImpl.h" | 98 #include "web/WebSettingsImpl.h" |
| 101 #include "web/WebViewImpl.h" | 99 #include "web/WebViewImpl.h" |
| 102 #include "wtf/text/CString.h" | 100 #include "wtf/text/CString.h" |
| 103 #include "wtf/text/StringBuilder.h" | 101 #include "wtf/text/StringBuilder.h" |
| 104 #include "wtf/text/StringConcatenate.h" | 102 #include "wtf/text/StringConcatenate.h" |
| 105 #include "wtf/unicode/CharacterNames.h" | 103 #include "wtf/unicode/CharacterNames.h" |
| 106 | 104 |
| 107 namespace blink { | 105 namespace blink { |
| 108 | 106 |
| 109 // Converts a AXObjectCache::AXNotification to a WebAXEvent | 107 // Converts a AXObjectCache::AXNotification to a WebAXEvent |
| (...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 867 { | 865 { |
| 868 // FIXME: remove. See http://crbug.com/425756 | 866 // FIXME: remove. See http://crbug.com/425756 |
| 869 if (m_webView->autofillClient()) | 867 if (m_webView->autofillClient()) |
| 870 m_webView->autofillClient()->openTextDataListChooser(WebInputElement(&in
put)); | 868 m_webView->autofillClient()->openTextDataListChooser(WebInputElement(&in
put)); |
| 871 WebLocalFrameImpl* webframe = WebLocalFrameImpl::fromFrame(input.document().
frame()); | 869 WebLocalFrameImpl* webframe = WebLocalFrameImpl::fromFrame(input.document().
frame()); |
| 872 if (webframe->autofillClient()) | 870 if (webframe->autofillClient()) |
| 873 webframe->autofillClient()->openTextDataListChooser(WebInputElement(&inp
ut)); | 871 webframe->autofillClient()->openTextDataListChooser(WebInputElement(&inp
ut)); |
| 874 } | 872 } |
| 875 | 873 |
| 876 } // namespace blink | 874 } // namespace blink |
| OLD | NEW |