| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 <queue> | 5 #include <queue> |
| 6 | 6 |
| 7 #include "base/location.h" | 7 #include "base/location.h" |
| 8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
| 9 #include "base/process/process.h" | 9 #include "base/process/process.h" |
| 10 #include "base/single_thread_task_runner.h" | 10 #include "base/single_thread_task_runner.h" |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 namespace { | 109 namespace { |
| 110 const char kEmptyResponsePath[] = "/close-socket"; | 110 const char kEmptyResponsePath[] = "/close-socket"; |
| 111 const char kRedirectResponsePath[] = "/server-redirect"; | 111 const char kRedirectResponsePath[] = "/server-redirect"; |
| 112 const char kUserAgentRedirectResponsePath[] = "/detect-user-agent"; | 112 const char kUserAgentRedirectResponsePath[] = "/detect-user-agent"; |
| 113 const char kCacheResponsePath[] = "/cache-control-response"; | 113 const char kCacheResponsePath[] = "/cache-control-response"; |
| 114 const char kRedirectResponseFullPath[] = | 114 const char kRedirectResponseFullPath[] = |
| 115 "/extensions/platform_apps/web_view/shim/guest_redirect.html"; | 115 "/extensions/platform_apps/web_view/shim/guest_redirect.html"; |
| 116 | 116 |
| 117 class EmptyHttpResponse : public net::test_server::HttpResponse { | 117 class EmptyHttpResponse : public net::test_server::HttpResponse { |
| 118 public: | 118 public: |
| 119 std::string ToResponseString() const override { return std::string(); } | 119 void SendResponse(net::test_server::SendBytesCallback send, |
| 120 net::test_server::SendCompleteCallback done) override { |
| 121 send.Run("", done); |
| 122 } |
| 120 }; | 123 }; |
| 121 | 124 |
| 122 class TestInterstitialPageDelegate : public content::InterstitialPageDelegate { | 125 class TestInterstitialPageDelegate : public content::InterstitialPageDelegate { |
| 123 public: | 126 public: |
| 124 TestInterstitialPageDelegate() { | 127 TestInterstitialPageDelegate() { |
| 125 } | 128 } |
| 126 ~TestInterstitialPageDelegate() override {} | 129 ~TestInterstitialPageDelegate() override {} |
| 127 std::string GetHTMLContents() override { return std::string(); } | 130 std::string GetHTMLContents() override { return std::string(); } |
| 128 }; | 131 }; |
| 129 | 132 |
| (...skipping 2843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2973 // 4 tasks expected. The order is arbitrary. | 2976 // 4 tasks expected. The order is arbitrary. |
| 2974 // Tab: about:blank, | 2977 // Tab: about:blank, |
| 2975 // Background Page: <webview> task manager test, | 2978 // Background Page: <webview> task manager test, |
| 2976 // App: <webview> task manager test, | 2979 // App: <webview> task manager test, |
| 2977 // Webview: WebViewed test content. | 2980 // Webview: WebViewed test content. |
| 2978 EXPECT_EQ(4U, task_manager.tasks().size()); | 2981 EXPECT_EQ(4U, task_manager.tasks().size()); |
| 2979 EXPECT_TRUE(HasExpectedGuestTask(task_manager, guest_contents)); | 2982 EXPECT_TRUE(HasExpectedGuestTask(task_manager, guest_contents)); |
| 2980 } | 2983 } |
| 2981 | 2984 |
| 2982 #endif // defined(ENABLE_TASK_MANAGER) | 2985 #endif // defined(ENABLE_TASK_MANAGER) |
| OLD | NEW |