| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "web/WebFrameWidgetImpl.h" | 31 #include "web/WebFrameWidgetImpl.h" |
| 32 | 32 |
| 33 #include "core/dom/DocumentUserGestureToken.h" | 33 #include "core/dom/DocumentUserGestureToken.h" |
| 34 #include "core/editing/EditingUtilities.h" | 34 #include "core/editing/EditingUtilities.h" |
| 35 #include "core/editing/Editor.h" | 35 #include "core/editing/Editor.h" |
| 36 #include "core/editing/FrameSelection.h" | 36 #include "core/editing/FrameSelection.h" |
| 37 #include "core/editing/InputMethodController.h" | 37 #include "core/editing/InputMethodController.h" |
| 38 #include "core/editing/PlainTextRange.h" | 38 #include "core/editing/PlainTextRange.h" |
| 39 #include "core/frame/FrameHost.h" | |
| 40 #include "core/frame/FrameView.h" | 39 #include "core/frame/FrameView.h" |
| 41 #include "core/frame/RemoteFrame.h" | 40 #include "core/frame/RemoteFrame.h" |
| 42 #include "core/frame/Settings.h" | 41 #include "core/frame/Settings.h" |
| 43 #include "core/frame/VisualViewport.h" | 42 #include "core/frame/VisualViewport.h" |
| 44 #include "core/html/HTMLTextAreaElement.h" | 43 #include "core/html/HTMLTextAreaElement.h" |
| 45 #include "core/input/EventHandler.h" | 44 #include "core/input/EventHandler.h" |
| 46 #include "core/layout/LayoutView.h" | 45 #include "core/layout/LayoutView.h" |
| 47 #include "core/layout/api/LayoutViewItem.h" | 46 #include "core/layout/api/LayoutViewItem.h" |
| 48 #include "core/layout/compositing/PaintLayerCompositor.h" | 47 #include "core/layout/compositing/PaintLayerCompositor.h" |
| 49 #include "core/page/ContextMenuController.h" | 48 #include "core/page/ContextMenuController.h" |
| (...skipping 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1134 return nullptr; | 1133 return nullptr; |
| 1135 } | 1134 } |
| 1136 | 1135 |
| 1137 LocalFrame* WebFrameWidgetImpl::focusedLocalFrameAvailableForIme() const { | 1136 LocalFrame* WebFrameWidgetImpl::focusedLocalFrameAvailableForIme() const { |
| 1138 if (!m_imeAcceptEvents) | 1137 if (!m_imeAcceptEvents) |
| 1139 return nullptr; | 1138 return nullptr; |
| 1140 return focusedLocalFrameInWidget(); | 1139 return focusedLocalFrameInWidget(); |
| 1141 } | 1140 } |
| 1142 | 1141 |
| 1143 } // namespace blink | 1142 } // namespace blink |
| OLD | NEW |