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

Side by Side Diff: third_party/WebKit/Source/core/testing/Internals.cpp

Issue 2584423002: Loading: move core/fetch to platform/loader/fetch (Closed)
Patch Set: another try 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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 #include "core/editing/Editor.h" 63 #include "core/editing/Editor.h"
64 #include "core/editing/PlainTextRange.h" 64 #include "core/editing/PlainTextRange.h"
65 #include "core/editing/SurroundingText.h" 65 #include "core/editing/SurroundingText.h"
66 #include "core/editing/iterators/TextIterator.h" 66 #include "core/editing/iterators/TextIterator.h"
67 #include "core/editing/markers/DocumentMarker.h" 67 #include "core/editing/markers/DocumentMarker.h"
68 #include "core/editing/markers/DocumentMarkerController.h" 68 #include "core/editing/markers/DocumentMarkerController.h"
69 #include "core/editing/serializers/Serialization.h" 69 #include "core/editing/serializers/Serialization.h"
70 #include "core/editing/spellcheck/IdleSpellCheckCallback.h" 70 #include "core/editing/spellcheck/IdleSpellCheckCallback.h"
71 #include "core/editing/spellcheck/SpellCheckRequester.h" 71 #include "core/editing/spellcheck/SpellCheckRequester.h"
72 #include "core/editing/spellcheck/SpellChecker.h" 72 #include "core/editing/spellcheck/SpellChecker.h"
73 #include "core/fetch/MemoryCache.h"
74 #include "core/fetch/ResourceFetcher.h"
75 #include "core/frame/EventHandlerRegistry.h" 73 #include "core/frame/EventHandlerRegistry.h"
76 #include "core/frame/FrameConsole.h" 74 #include "core/frame/FrameConsole.h"
77 #include "core/frame/FrameView.h" 75 #include "core/frame/FrameView.h"
78 #include "core/frame/LocalDOMWindow.h" 76 #include "core/frame/LocalDOMWindow.h"
79 #include "core/frame/LocalFrame.h" 77 #include "core/frame/LocalFrame.h"
80 #include "core/frame/Settings.h" 78 #include "core/frame/Settings.h"
81 #include "core/frame/VisualViewport.h" 79 #include "core/frame/VisualViewport.h"
82 #include "core/html/HTMLContentElement.h" 80 #include "core/html/HTMLContentElement.h"
83 #include "core/html/HTMLIFrameElement.h" 81 #include "core/html/HTMLIFrameElement.h"
84 #include "core/html/HTMLImageElement.h" 82 #include "core/html/HTMLImageElement.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 #include "platform/Cursor.h" 127 #include "platform/Cursor.h"
130 #include "platform/InstanceCounters.h" 128 #include "platform/InstanceCounters.h"
131 #include "platform/Language.h" 129 #include "platform/Language.h"
132 #include "platform/LayoutLocale.h" 130 #include "platform/LayoutLocale.h"
133 #include "platform/RuntimeEnabledFeatures.h" 131 #include "platform/RuntimeEnabledFeatures.h"
134 #include "platform/geometry/IntRect.h" 132 #include "platform/geometry/IntRect.h"
135 #include "platform/geometry/LayoutRect.h" 133 #include "platform/geometry/LayoutRect.h"
136 #include "platform/graphics/GraphicsLayer.h" 134 #include "platform/graphics/GraphicsLayer.h"
137 #include "platform/heap/Handle.h" 135 #include "platform/heap/Handle.h"
138 #include "platform/instrumentation/tracing/TraceEvent.h" 136 #include "platform/instrumentation/tracing/TraceEvent.h"
137 #include "platform/loader/fetch/MemoryCache.h"
138 #include "platform/loader/fetch/ResourceFetcher.h"
139 #include "platform/network/ResourceLoadPriority.h" 139 #include "platform/network/ResourceLoadPriority.h"
140 #include "platform/scroll/ProgrammaticScrollAnimator.h" 140 #include "platform/scroll/ProgrammaticScrollAnimator.h"
141 #include "platform/scroll/ScrollbarTheme.h" 141 #include "platform/scroll/ScrollbarTheme.h"
142 #include "platform/testing/URLTestHelpers.h" 142 #include "platform/testing/URLTestHelpers.h"
143 #include "platform/weborigin/SchemeRegistry.h" 143 #include "platform/weborigin/SchemeRegistry.h"
144 #include "public/platform/Platform.h" 144 #include "public/platform/Platform.h"
145 #include "public/platform/WebConnectionType.h" 145 #include "public/platform/WebConnectionType.h"
146 #include "public/platform/WebGraphicsContext3DProvider.h" 146 #include "public/platform/WebGraphicsContext3DProvider.h"
147 #include "public/platform/WebLayer.h" 147 #include "public/platform/WebLayer.h"
148 #include "public/platform/modules/remoteplayback/WebRemotePlaybackAvailability.h " 148 #include "public/platform/modules/remoteplayback/WebRemotePlaybackAvailability.h "
(...skipping 2943 matching lines...) Expand 10 before | Expand all | Expand 10 after
3092 3092
3093 void Internals::crash() { 3093 void Internals::crash() {
3094 CHECK(false) << "Intentional crash"; 3094 CHECK(false) << "Intentional crash";
3095 } 3095 }
3096 3096
3097 void Internals::setIsLowEndDevice(bool isLowEndDevice) { 3097 void Internals::setIsLowEndDevice(bool isLowEndDevice) {
3098 MemoryCoordinator::setIsLowEndDeviceForTesting(isLowEndDevice); 3098 MemoryCoordinator::setIsLowEndDeviceForTesting(isLowEndDevice);
3099 } 3099 }
3100 3100
3101 } // namespace blink 3101 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGUseElement.cpp ('k') | third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698