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

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

Issue 2805733003: Rewrite references to "wtf/" to "platform/wtf/" in web. (Closed)
Patch Set: Created 3 years, 8 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 Google Inc. All rights reserved. 2 * Copyright (C) 2011 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 15 matching lines...) Expand all
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "public/web/WebAssociatedURLLoader.h" 31 #include "public/web/WebAssociatedURLLoader.h"
32 32
33 #include <memory> 33 #include <memory>
34 #include "platform/testing/URLTestHelpers.h" 34 #include "platform/testing/URLTestHelpers.h"
35 #include "platform/testing/UnitTestHelpers.h" 35 #include "platform/testing/UnitTestHelpers.h"
36 #include "platform/wtf/PtrUtil.h"
37 #include "platform/wtf/text/CString.h"
38 #include "platform/wtf/text/WTFString.h"
36 #include "public/platform/Platform.h" 39 #include "public/platform/Platform.h"
37 #include "public/platform/WebString.h" 40 #include "public/platform/WebString.h"
38 #include "public/platform/WebThread.h" 41 #include "public/platform/WebThread.h"
39 #include "public/platform/WebURL.h" 42 #include "public/platform/WebURL.h"
40 #include "public/platform/WebURLLoaderMockFactory.h" 43 #include "public/platform/WebURLLoaderMockFactory.h"
41 #include "public/platform/WebURLRequest.h" 44 #include "public/platform/WebURLRequest.h"
42 #include "public/platform/WebURLResponse.h" 45 #include "public/platform/WebURLResponse.h"
43 #include "public/web/WebAssociatedURLLoaderClient.h" 46 #include "public/web/WebAssociatedURLLoaderClient.h"
44 #include "public/web/WebAssociatedURLLoaderOptions.h" 47 #include "public/web/WebAssociatedURLLoaderOptions.h"
45 #include "public/web/WebFrame.h" 48 #include "public/web/WebFrame.h"
46 #include "public/web/WebView.h" 49 #include "public/web/WebView.h"
47 #include "testing/gtest/include/gtest/gtest.h" 50 #include "testing/gtest/include/gtest/gtest.h"
48 #include "web/tests/FrameTestHelpers.h" 51 #include "web/tests/FrameTestHelpers.h"
49 #include "wtf/PtrUtil.h"
50 #include "wtf/text/CString.h"
51 #include "wtf/text/WTFString.h"
52 52
53 using blink::URLTestHelpers::toKURL; 53 using blink::URLTestHelpers::toKURL;
54 using blink::testing::runPendingTasks; 54 using blink::testing::runPendingTasks;
55 55
56 namespace blink { 56 namespace blink {
57 57
58 class WebAssociatedURLLoaderTest : public ::testing::Test, 58 class WebAssociatedURLLoaderTest : public ::testing::Test,
59 public WebAssociatedURLLoaderClient { 59 public WebAssociatedURLLoaderClient {
60 public: 60 public:
61 WebAssociatedURLLoaderTest() 61 WebAssociatedURLLoaderTest()
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
671 m_expectedLoader->loadAsynchronously(request, this); 671 m_expectedLoader->loadAsynchronously(request, this);
672 serveRequests(); 672 serveRequests();
673 EXPECT_TRUE(m_didReceiveResponse); 673 EXPECT_TRUE(m_didReceiveResponse);
674 EXPECT_TRUE(m_didReceiveData); 674 EXPECT_TRUE(m_didReceiveData);
675 EXPECT_TRUE(m_didFinishLoading); 675 EXPECT_TRUE(m_didFinishLoading);
676 676
677 EXPECT_FALSE(m_actualResponse.httpHeaderField(headerNameString).isEmpty()); 677 EXPECT_FALSE(m_actualResponse.httpHeaderField(headerNameString).isEmpty());
678 } 678 }
679 679
680 } // namespace blink 680 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebAssociatedURLLoaderImpl.cpp ('k') | third_party/WebKit/Source/web/WebDOMActivityLogger.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698