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

Side by Side Diff: third_party/WebKit/Source/modules/fetch/ResponseTest.cpp

Issue 1922473002: Remove unnecessary ExceptionCode.h inclusion (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "modules/fetch/Response.h" 5 #include "modules/fetch/Response.h"
6 6
7 #include "bindings/core/v8/ExceptionState.h" 7 #include "bindings/core/v8/ExceptionState.h"
8 #include "bindings/core/v8/ScriptState.h" 8 #include "bindings/core/v8/ScriptState.h"
9 #include "core/dom/Document.h" 9 #include "core/dom/Document.h"
10 #include "core/dom/ExceptionCode.h"
11 #include "core/frame/Frame.h" 10 #include "core/frame/Frame.h"
12 #include "core/testing/DummyPageHolder.h" 11 #include "core/testing/DummyPageHolder.h"
13 #include "modules/fetch/BodyStreamBuffer.h" 12 #include "modules/fetch/BodyStreamBuffer.h"
14 #include "modules/fetch/DataConsumerHandleTestUtil.h" 13 #include "modules/fetch/DataConsumerHandleTestUtil.h"
15 #include "modules/fetch/DataConsumerHandleUtil.h" 14 #include "modules/fetch/DataConsumerHandleUtil.h"
16 #include "modules/fetch/FetchResponseData.h" 15 #include "modules/fetch/FetchResponseData.h"
17 #include "platform/blob/BlobData.h" 16 #include "platform/blob/BlobData.h"
18 #include "platform/testing/UnitTestHelpers.h" 17 #include "platform/testing/UnitTestHelpers.h"
19 #include "public/platform/modules/serviceworker/WebServiceWorkerResponse.h" 18 #include "public/platform/modules/serviceworker/WebServiceWorkerResponse.h"
20 #include "testing/gtest/include/gtest/gtest.h" 19 #include "testing/gtest/include/gtest/gtest.h"
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 EXPECT_CALL(*client1, didFetchDataLoadFailed()); 252 EXPECT_CALL(*client1, didFetchDataLoadFailed());
254 EXPECT_CALL(*client2, didFetchDataLoadFailed()); 253 EXPECT_CALL(*client2, didFetchDataLoadFailed());
255 254
256 response->internalBodyBuffer()->startLoading(response->getExecutionContext() , FetchDataLoader::createLoaderAsString(), client1); 255 response->internalBodyBuffer()->startLoading(response->getExecutionContext() , FetchDataLoader::createLoaderAsString(), client1);
257 clonedResponse->internalBodyBuffer()->startLoading(response->getExecutionCon text(), FetchDataLoader::createLoaderAsString(), client2); 256 clonedResponse->internalBodyBuffer()->startLoading(response->getExecutionCon text(), FetchDataLoader::createLoaderAsString(), client2);
258 blink::testing::runPendingTasks(); 257 blink::testing::runPendingTasks();
259 } 258 }
260 259
261 } // namespace 260 } // namespace
262 } // namespace blink 261 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/fetch/FetchManager.cpp ('k') | third_party/WebKit/Source/modules/filesystem/EntrySync.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698