Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Side by Side Diff: third_party/WebKit/Source/web/WebViewImpl.cpp

Issue 2876403002: Move WebInputEventConversion from web/ to core/events/. (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2011, 2012 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 #include "core/dom/Text.h" 42 #include "core/dom/Text.h"
43 #include "core/editing/EditingUtilities.h" 43 #include "core/editing/EditingUtilities.h"
44 #include "core/editing/Editor.h" 44 #include "core/editing/Editor.h"
45 #include "core/editing/FrameSelection.h" 45 #include "core/editing/FrameSelection.h"
46 #include "core/editing/InputMethodController.h" 46 #include "core/editing/InputMethodController.h"
47 #include "core/editing/iterators/TextIterator.h" 47 #include "core/editing/iterators/TextIterator.h"
48 #include "core/editing/serializers/HTMLInterchange.h" 48 #include "core/editing/serializers/HTMLInterchange.h"
49 #include "core/editing/serializers/Serialization.h" 49 #include "core/editing/serializers/Serialization.h"
50 #include "core/events/KeyboardEvent.h" 50 #include "core/events/KeyboardEvent.h"
51 #include "core/events/UIEventWithKeyState.h" 51 #include "core/events/UIEventWithKeyState.h"
52 #include "core/events/WebInputEventConversion.h"
52 #include "core/events/WheelEvent.h" 53 #include "core/events/WheelEvent.h"
53 #include "core/frame/BrowserControls.h" 54 #include "core/frame/BrowserControls.h"
54 #include "core/frame/EventHandlerRegistry.h" 55 #include "core/frame/EventHandlerRegistry.h"
55 #include "core/frame/FrameView.h" 56 #include "core/frame/FrameView.h"
56 #include "core/frame/LocalFrame.h" 57 #include "core/frame/LocalFrame.h"
57 #include "core/frame/LocalFrameClient.h" 58 #include "core/frame/LocalFrameClient.h"
58 #include "core/frame/PageScaleConstraintsSet.h" 59 #include "core/frame/PageScaleConstraintsSet.h"
59 #include "core/frame/RemoteFrame.h" 60 #include "core/frame/RemoteFrame.h"
60 #include "core/frame/ResizeViewportAnchor.h" 61 #include "core/frame/ResizeViewportAnchor.h"
61 #include "core/frame/RotationViewportAnchor.h" 62 #include "core/frame/RotationViewportAnchor.h"
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 #include "web/ContextMenuAllowedScope.h" 162 #include "web/ContextMenuAllowedScope.h"
162 #include "web/DedicatedWorkerMessagingProxyProviderImpl.h" 163 #include "web/DedicatedWorkerMessagingProxyProviderImpl.h"
163 #include "web/DevToolsEmulator.h" 164 #include "web/DevToolsEmulator.h"
164 #include "web/FullscreenController.h" 165 #include "web/FullscreenController.h"
165 #include "web/LinkHighlightImpl.h" 166 #include "web/LinkHighlightImpl.h"
166 #include "web/PageOverlay.h" 167 #include "web/PageOverlay.h"
167 #include "web/PrerendererClientImpl.h" 168 #include "web/PrerendererClientImpl.h"
168 #include "web/StorageQuotaClientImpl.h" 169 #include "web/StorageQuotaClientImpl.h"
169 #include "web/ValidationMessageClientImpl.h" 170 #include "web/ValidationMessageClientImpl.h"
170 #include "web/WebDevToolsAgentImpl.h" 171 #include "web/WebDevToolsAgentImpl.h"
171 #include "web/WebInputEventConversion.h"
172 #include "web/WebInputMethodControllerImpl.h" 172 #include "web/WebInputMethodControllerImpl.h"
173 #include "web/WebLocalFrameImpl.h" 173 #include "web/WebLocalFrameImpl.h"
174 #include "web/WebPluginContainerImpl.h" 174 #include "web/WebPluginContainerImpl.h"
175 #include "web/WebRemoteFrameImpl.h" 175 #include "web/WebRemoteFrameImpl.h"
176 #include "web/WebSettingsImpl.h" 176 #include "web/WebSettingsImpl.h"
177 177
178 #if USE(DEFAULT_RENDER_THEME) 178 #if USE(DEFAULT_RENDER_THEME)
179 #include "core/layout/LayoutThemeDefault.h" 179 #include "core/layout/LayoutThemeDefault.h"
180 #endif 180 #endif
181 181
(...skipping 3969 matching lines...) Expand 10 before | Expand all | Expand 10 after
4151 if (focused_frame->LocalFrameRoot() != MainFrameImpl()->GetFrame()) 4151 if (focused_frame->LocalFrameRoot() != MainFrameImpl()->GetFrame())
4152 return nullptr; 4152 return nullptr;
4153 return focused_frame; 4153 return focused_frame;
4154 } 4154 }
4155 4155
4156 LocalFrame* WebViewImpl::FocusedLocalFrameAvailableForIme() const { 4156 LocalFrame* WebViewImpl::FocusedLocalFrameAvailableForIme() const {
4157 return ime_accept_events_ ? FocusedLocalFrameInWidget() : nullptr; 4157 return ime_accept_events_ ? FocusedLocalFrameInWidget() : nullptr;
4158 } 4158 }
4159 4159
4160 } // namespace blink 4160 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698