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

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

Issue 2826373002: Move CompositionUnderlineVectorBuilder.* from web/ -> core/editing/. (Closed)
Patch Set: Change CompositionUnderlineVectorBuilder to have an explicit method to build a Vector, rather than … 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 #include "public/web/WebMediaPlayerAction.h" 148 #include "public/web/WebMediaPlayerAction.h"
149 #include "public/web/WebNode.h" 149 #include "public/web/WebNode.h"
150 #include "public/web/WebPlugin.h" 150 #include "public/web/WebPlugin.h"
151 #include "public/web/WebPluginAction.h" 151 #include "public/web/WebPluginAction.h"
152 #include "public/web/WebRange.h" 152 #include "public/web/WebRange.h"
153 #include "public/web/WebScopedUserGesture.h" 153 #include "public/web/WebScopedUserGesture.h"
154 #include "public/web/WebSelection.h" 154 #include "public/web/WebSelection.h"
155 #include "public/web/WebViewClient.h" 155 #include "public/web/WebViewClient.h"
156 #include "public/web/WebWindowFeatures.h" 156 #include "public/web/WebWindowFeatures.h"
157 #include "web/AnimationWorkletProxyClientImpl.h" 157 #include "web/AnimationWorkletProxyClientImpl.h"
158 #include "web/CompositionUnderlineVectorBuilder.h"
159 #include "web/CompositorMutatorImpl.h" 158 #include "web/CompositorMutatorImpl.h"
160 #include "web/CompositorWorkerProxyClientImpl.h" 159 #include "web/CompositorWorkerProxyClientImpl.h"
161 #include "web/ContextMenuAllowedScope.h" 160 #include "web/ContextMenuAllowedScope.h"
162 #include "web/DedicatedWorkerMessagingProxyProviderImpl.h" 161 #include "web/DedicatedWorkerMessagingProxyProviderImpl.h"
163 #include "web/DevToolsEmulator.h" 162 #include "web/DevToolsEmulator.h"
164 #include "web/FullscreenController.h" 163 #include "web/FullscreenController.h"
165 #include "web/InspectorOverlayAgent.h" 164 #include "web/InspectorOverlayAgent.h"
166 #include "web/LinkHighlightImpl.h" 165 #include "web/LinkHighlightImpl.h"
167 #include "web/PageOverlay.h" 166 #include "web/PageOverlay.h"
168 #include "web/PrerendererClientImpl.h" 167 #include "web/PrerendererClientImpl.h"
(...skipping 3988 matching lines...) Expand 10 before | Expand all | Expand 10 after
4157 if (focused_frame->LocalFrameRoot() != MainFrameImpl()->GetFrame()) 4156 if (focused_frame->LocalFrameRoot() != MainFrameImpl()->GetFrame())
4158 return nullptr; 4157 return nullptr;
4159 return focused_frame; 4158 return focused_frame;
4160 } 4159 }
4161 4160
4162 LocalFrame* WebViewImpl::FocusedLocalFrameAvailableForIme() const { 4161 LocalFrame* WebViewImpl::FocusedLocalFrameAvailableForIme() const {
4163 return ime_accept_events_ ? FocusedLocalFrameInWidget() : nullptr; 4162 return ime_accept_events_ ? FocusedLocalFrameInWidget() : nullptr;
4164 } 4163 }
4165 4164
4166 } // namespace blink 4165 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698