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

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

Issue 2584423002: Loading: move core/fetch to platform/loader/fetch (Closed)
Patch Set: rebase Created 3 years, 11 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/editing/Editor.h" 42 #include "core/editing/Editor.h"
43 #include "core/editing/FrameSelection.h" 43 #include "core/editing/FrameSelection.h"
44 #include "core/editing/InputMethodController.h" 44 #include "core/editing/InputMethodController.h"
45 #include "core/editing/iterators/TextIterator.h" 45 #include "core/editing/iterators/TextIterator.h"
46 #include "core/editing/markers/DocumentMarkerController.h" 46 #include "core/editing/markers/DocumentMarkerController.h"
47 #include "core/editing/serializers/HTMLInterchange.h" 47 #include "core/editing/serializers/HTMLInterchange.h"
48 #include "core/editing/serializers/Serialization.h" 48 #include "core/editing/serializers/Serialization.h"
49 #include "core/events/KeyboardEvent.h" 49 #include "core/events/KeyboardEvent.h"
50 #include "core/events/UIEventWithKeyState.h" 50 #include "core/events/UIEventWithKeyState.h"
51 #include "core/events/WheelEvent.h" 51 #include "core/events/WheelEvent.h"
52 #include "core/fetch/UniqueIdentifier.h"
53 #include "core/frame/BrowserControls.h" 52 #include "core/frame/BrowserControls.h"
54 #include "core/frame/EventHandlerRegistry.h" 53 #include "core/frame/EventHandlerRegistry.h"
55 #include "core/frame/FrameHost.h" 54 #include "core/frame/FrameHost.h"
56 #include "core/frame/FrameView.h" 55 #include "core/frame/FrameView.h"
57 #include "core/frame/LocalFrame.h" 56 #include "core/frame/LocalFrame.h"
58 #include "core/frame/PageScaleConstraintsSet.h" 57 #include "core/frame/PageScaleConstraintsSet.h"
59 #include "core/frame/RemoteFrame.h" 58 #include "core/frame/RemoteFrame.h"
60 #include "core/frame/Settings.h" 59 #include "core/frame/Settings.h"
61 #include "core/frame/SmartClip.h" 60 #include "core/frame/SmartClip.h"
62 #include "core/frame/UseCounter.h" 61 #include "core/frame/UseCounter.h"
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 #include "platform/graphics/Color.h" 107 #include "platform/graphics/Color.h"
109 #include "platform/graphics/CompositorMutatorClient.h" 108 #include "platform/graphics/CompositorMutatorClient.h"
110 #include "platform/graphics/FirstPaintInvalidationTracking.h" 109 #include "platform/graphics/FirstPaintInvalidationTracking.h"
111 #include "platform/graphics/GraphicsContext.h" 110 #include "platform/graphics/GraphicsContext.h"
112 #include "platform/graphics/Image.h" 111 #include "platform/graphics/Image.h"
113 #include "platform/graphics/ImageBuffer.h" 112 #include "platform/graphics/ImageBuffer.h"
114 #include "platform/graphics/gpu/DrawingBuffer.h" 113 #include "platform/graphics/gpu/DrawingBuffer.h"
115 #include "platform/graphics/paint/DrawingRecorder.h" 114 #include "platform/graphics/paint/DrawingRecorder.h"
116 #include "platform/image-decoders/ImageDecoder.h" 115 #include "platform/image-decoders/ImageDecoder.h"
117 #include "platform/instrumentation/tracing/TraceEvent.h" 116 #include "platform/instrumentation/tracing/TraceEvent.h"
117 #include "platform/loader/fetch/UniqueIdentifier.h"
118 #include "platform/scroll/ScrollbarTheme.h" 118 #include "platform/scroll/ScrollbarTheme.h"
119 #include "platform/weborigin/SchemeRegistry.h" 119 #include "platform/weborigin/SchemeRegistry.h"
120 #include "public/platform/Platform.h" 120 #include "public/platform/Platform.h"
121 #include "public/platform/WebCompositeAndReadbackAsyncCallback.h" 121 #include "public/platform/WebCompositeAndReadbackAsyncCallback.h"
122 #include "public/platform/WebCompositorSupport.h" 122 #include "public/platform/WebCompositorSupport.h"
123 #include "public/platform/WebFloatPoint.h" 123 #include "public/platform/WebFloatPoint.h"
124 #include "public/platform/WebGestureCurve.h" 124 #include "public/platform/WebGestureCurve.h"
125 #include "public/platform/WebImage.h" 125 #include "public/platform/WebImage.h"
126 #include "public/platform/WebLayerTreeView.h" 126 #include "public/platform/WebLayerTreeView.h"
127 #include "public/platform/WebScheduler.h" 127 #include "public/platform/WebScheduler.h"
(...skipping 4063 matching lines...) Expand 10 before | Expand all | Expand 10 after
4191 if (focusedFrame->localFrameRoot() != mainFrameImpl()->frame()) 4191 if (focusedFrame->localFrameRoot() != mainFrameImpl()->frame())
4192 return nullptr; 4192 return nullptr;
4193 return focusedFrame; 4193 return focusedFrame;
4194 } 4194 }
4195 4195
4196 LocalFrame* WebViewImpl::focusedLocalFrameAvailableForIme() const { 4196 LocalFrame* WebViewImpl::focusedLocalFrameAvailableForIme() const {
4197 return m_imeAcceptEvents ? focusedLocalFrameInWidget() : nullptr; 4197 return m_imeAcceptEvents ? focusedLocalFrameInWidget() : nullptr;
4198 } 4198 }
4199 4199
4200 } // namespace blink 4200 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698