New issue
Advanced search Search tips

Issue 699369 link

Starred by 2 users

Issue metadata

Status: Fixed
Owner:
Closed: Apr 2018
Components:
EstimatedDays: ----
NextAction: ----
OS: All
Pri: 2
Type: Task

Blocking:
issue 655916



Sign in to add a comment

platform/loader should contain relevant files

Project Member Reported by toyoshim@chromium.org, Mar 8 2017

Issue description

Some loader related files were placed in a different directory like platform/network due to absent of platform/loader.

Now that we have platform/loader, we will start moving files from other directories to platform/loader if it is preferable.

FYI, Here is a kinuko's spreadsheet for platform/{network,loader} files.
https://docs.google.com/a/chromium.org/spreadsheets/d/1caEsYrkqC2D0iHmnf9-Mwi1VIwYIUjs5WU9FZciYeUg/edit?usp=sharing
 
Project Member

Comment 1 by bugdroid1@chromium.org, Mar 8 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/f35783d6563003295d1f78ff87cee60b1c05fd1e

commit f35783d6563003295d1f78ff87cee60b1c05fd1e
Author: toyoshim <toyoshim@chromium.org>
Date: Wed Mar 08 10:39:21 2017

platform/loader: move LinkHeader from network/ to loader/

Since LinkHeader is used only by core/loader/LinkLoader, it should be
placed at platform/loader/ rather than platform/network/.

BUG= 699369 

Review-Url: https://codereview.chromium.org/2739633003
Cr-Commit-Position: refs/heads/master@{#455425}

[modify] https://crrev.com/f35783d6563003295d1f78ff87cee60b1c05fd1e/third_party/WebKit/Source/core/loader/LinkLoader.cpp
[modify] https://crrev.com/f35783d6563003295d1f78ff87cee60b1c05fd1e/third_party/WebKit/Source/platform/BUILD.gn
[modify] https://crrev.com/f35783d6563003295d1f78ff87cee60b1c05fd1e/third_party/WebKit/Source/platform/loader/BUILD.gn
[add] https://crrev.com/f35783d6563003295d1f78ff87cee60b1c05fd1e/third_party/WebKit/Source/platform/loader/DEPS
[rename] https://crrev.com/f35783d6563003295d1f78ff87cee60b1c05fd1e/third_party/WebKit/Source/platform/loader/LinkHeader.cpp
[rename] https://crrev.com/f35783d6563003295d1f78ff87cee60b1c05fd1e/third_party/WebKit/Source/platform/loader/LinkHeader.h
[rename] https://crrev.com/f35783d6563003295d1f78ff87cee60b1c05fd1e/third_party/WebKit/Source/platform/loader/LinkHeaderTest.cpp
[modify] https://crrev.com/f35783d6563003295d1f78ff87cee60b1c05fd1e/third_party/WebKit/Source/platform/network/DEPS

Project Member

Comment 2 by bugdroid1@chromium.org, Mar 9 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/b823112b71ffde298c16004758cf78953ecdd3cc

commit b823112b71ffde298c16004758cf78953ecdd3cc
Author: toyoshim <toyoshim@chromium.org>
Date: Thu Mar 09 08:24:08 2017

platform/loader: move test file definition to platform/loader/BUILD.gn

platform/loader has a BUILD.gn, but it defines only production files,
and files for testing are still defined in platform/BUilD.gn.

This patch moves test file definitions for blink_platform_unittests
from platform/BUILD.gn to platform/loader/BUILD.gn.

BUG= 699369 

Review-Url: https://codereview.chromium.org/2733253003
Cr-Commit-Position: refs/heads/master@{#455696}

[modify] https://crrev.com/b823112b71ffde298c16004758cf78953ecdd3cc/third_party/WebKit/Source/platform/BUILD.gn
[modify] https://crrev.com/b823112b71ffde298c16004758cf78953ecdd3cc/third_party/WebKit/Source/platform/loader/BUILD.gn

Project Member

Comment 3 by bugdroid1@chromium.org, Mar 9 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/52c5e8a493370d2e50e88c8c53e34818a08812f5

commit 52c5e8a493370d2e50e88c8c53e34818a08812f5
Author: toyoshim <toyoshim@chromium.org>
Date: Thu Mar 09 11:19:09 2017

platform/loader: move test support files definition to loader/BUILD.gn

platform/loader has a BUILD.gn, but it does not contain files for
platform:test_support that can be used in blink_platform_unittests
and webkit_unit_tests. This patch moves platform/loader/ files for
the test_support from platform/BUILD.gn to platform/loader/BUILD.gn.

BUG= 699369 

Review-Url: https://codereview.chromium.org/2732243005
Cr-Commit-Position: refs/heads/master@{#455713}

[modify] https://crrev.com/52c5e8a493370d2e50e88c8c53e34818a08812f5/third_party/WebKit/Source/platform/BUILD.gn
[modify] https://crrev.com/52c5e8a493370d2e50e88c8c53e34818a08812f5/third_party/WebKit/Source/platform/loader/BUILD.gn

Project Member

Comment 4 by bugdroid1@chromium.org, Mar 15 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/15e3d9216e921042d06c0b6aaadcea10101d1034

commit 15e3d9216e921042d06c0b6aaadcea10101d1034
Author: toyoshim <toyoshim@chromium.org>
Date: Wed Mar 15 12:04:52 2017

platform/loader: move network/Resource* to loader/fetch

Since network/Resource* are utilities for loader/fetch/ResourceLoader,
it would be more reasonable to have them in loader/fetch/
rather than network/.

BUG= 699369 

Review-Url: https://codereview.chromium.org/2746113002
Cr-Commit-Position: refs/heads/master@{#457056}

[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/css/RemoteFontFaceSource.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/fileapi/FileReaderLoader.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/frame/Frame.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/frame/FrameConsole.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/frame/ImageBitmapTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/frame/LocalFrameClient.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/frame/RemoteFrame.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/frame/csp/CSPDirectiveList.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/frame/csp/CSPDirectiveListTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/frame/csp/CSPSource.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/frame/csp/CSPSourceTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicyTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/frame/csp/SourceListDirective.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/frame/csp/SourceListDirectiveTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/html/HTMLImageElement.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/html/parser/CSSPreloadScannerTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/html/parser/XSSAuditorDelegate.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/inspector/DevToolsHost.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/DocumentLoader.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/DocumentThreadableLoader.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/DocumentThreadableLoader.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/EmptyClients.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/FrameFetchContext.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/FrameFetchContext.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/FrameFetchContextTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/FrameLoadRequest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/FrameLoader.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/FrameLoader.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/HistoryItem.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/LinkLoaderTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/MixedContentChecker.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/MixedContentCheckerTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/PingLoader.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/ProgressTracker.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/ProgressTracker.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/ProgressTrackerTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/ThreadableLoaderTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/WorkerThreadableLoader.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/private/CrossOriginPreflightResultCache.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/resource/CSSStyleSheetResourceTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/resource/FontResourceTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/resource/ImageResourceContent.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/resource/ImageResourceObserver.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/resource/MultipartImageResourceParser.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/loader/resource/MultipartImageResourceParserTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/page/CreateWindow.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/page/DragController.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/svg/SVGAElement.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/testing/Internals.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/timing/PerformanceBase.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/timing/PerformanceBaseTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/timing/PerformanceResourceTiming.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/timing/PerformanceTiming.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/workers/WorkerScriptLoader.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/workers/WorkerScriptLoader.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/xml/XSLTProcessorLibxslt.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/modules/eventsource/EventSource.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/modules/fetch/BlobBytesConsumer.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/modules/fetch/BlobBytesConsumerTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/modules/fetch/FetchManager.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/modules/fetch/FetchRequestData.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/modules/fetch/Request.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/modules/notifications/NotificationImageLoader.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScope.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/BUILD.gn
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/CrossThreadCopier.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/exported/WebHTTPLoadInfo.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/exported/WebURLError.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/exported/WebURLLoadTiming.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/BUILD.gn
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/DEPS
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/CrossOriginAccessControl.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/CrossOriginAccessControl.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/CrossOriginAccessControlTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/FetchContext.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/FetchRequest.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/MemoryCacheCorrectnessTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/MemoryCacheTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/RawResourceTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/Resource.h
[rename] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/ResourceError.cpp
[rename] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/ResourceError.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/ResourceFetcherTest.cpp
[rename] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/ResourceLoadInfo.h
[rename] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/ResourceLoadPriority.h
[rename] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/ResourceLoadTiming.cpp
[rename] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/ResourceLoadTiming.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/ResourceLoader.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/ResourceLoader.h
[rename] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/ResourceRequest.cpp
[rename] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/ResourceRequest.h
[rename] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/ResourceRequestTest.cpp
[rename] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/ResourceResponse.cpp
[rename] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/ResourceResponse.h
[rename] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/ResourceResponseTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/ResourceTest.cpp
[rename] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/ResourceTimingInfo.cpp
[rename] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/fetch/ResourceTimingInfo.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/testing/FetchTestingPlatformSupport.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/loader/testing/MockFetchContext.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/network/ContentSecurityPolicyResponseHeaders.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/network/HTTPParsers.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/network/HTTPParsersTest.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/network/NetworkInstrumentation.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/network/NetworkInstrumentation.h
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/platform/testing/PlatformTestPrinters.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/web/SharedWorkerRepositoryClientImpl.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/web/WebAssociatedURLLoaderImpl.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/web/WebFrameSerializer.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
[modify] https://crrev.com/15e3d9216e921042d06c0b6aaadcea10101d1034/third_party/WebKit/Source/web/tests/WebFrameTest.cpp

Notes:
Would consider to move platform/network to platform/loader/base, and probably will collect files that depends on //net into base.

Also will start investigating where should files under content/child be placed after mojofication.
Project Member

Comment 6 by sheriffbot@chromium.org, Apr 6 2018

Labels: Hotlist-Recharge-Cold
Status: Untriaged (was: Available)
This issue has been Available for over a year. If it's no longer important or seems unlikely to be fixed, please consider closing it out. If it is important, please re-triage the issue.

Sorry for the inconvenience if the bug really should have been left as Available.

For more details visit https://www.chromium.org/issue-tracking/autotriage - Your friendly Sheriffbot
Status: Fixed (was: Untriaged)

Sign in to add a comment