| OLD | NEW | 
|    1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |    1 // Copyright (c) 2012 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 <stack> |    5 #include <stack> | 
|    6 #include <string> |    6 #include <string> | 
|    7 #include <vector> |    7 #include <vector> | 
|    8  |    8  | 
|    9 #include "base/bind.h" |    9 #include "base/bind.h" | 
|   10 #include "base/bind_helpers.h" |   10 #include "base/bind_helpers.h" | 
|   11 #include "base/callback.h" |   11 #include "base/callback.h" | 
|   12 #include "base/message_loop.h" |   12 #include "base/message_loop/message_loop.h" | 
|   13 #include "base/synchronization/waitable_event.h" |   13 #include "base/synchronization/waitable_event.h" | 
|   14 #include "base/threading/thread.h" |   14 #include "base/threading/thread.h" | 
|   15 #include "net/base/net_errors.h" |   15 #include "net/base/net_errors.h" | 
|   16 #include "net/http/http_response_headers.h" |   16 #include "net/http/http_response_headers.h" | 
|   17 #include "net/url_request/url_request.h" |   17 #include "net/url_request/url_request.h" | 
|   18 #include "net/url_request/url_request_context.h" |   18 #include "net/url_request/url_request_context.h" | 
|   19 #include "net/url_request/url_request_error_job.h" |   19 #include "net/url_request/url_request_error_job.h" | 
|   20 #include "testing/gtest/include/gtest/gtest.h" |   20 #include "testing/gtest/include/gtest/gtest.h" | 
|   21 #include "webkit/browser/appcache/appcache.h" |   21 #include "webkit/browser/appcache/appcache.h" | 
|   22 #include "webkit/browser/appcache/appcache_backend_impl.h" |   22 #include "webkit/browser/appcache/appcache_backend_impl.h" | 
| (...skipping 939 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  962  |  962  | 
|  963 TEST_F(AppCacheRequestHandlerTest, WorkerRequest) { |  963 TEST_F(AppCacheRequestHandlerTest, WorkerRequest) { | 
|  964   RunTestOnIOThread(&AppCacheRequestHandlerTest::WorkerRequest); |  964   RunTestOnIOThread(&AppCacheRequestHandlerTest::WorkerRequest); | 
|  965 } |  965 } | 
|  966  |  966  | 
|  967 TEST_F(AppCacheRequestHandlerTest, MainResource_Blocked) { |  967 TEST_F(AppCacheRequestHandlerTest, MainResource_Blocked) { | 
|  968   RunTestOnIOThread(&AppCacheRequestHandlerTest::MainResource_Blocked); |  968   RunTestOnIOThread(&AppCacheRequestHandlerTest::MainResource_Blocked); | 
|  969 } |  969 } | 
|  970  |  970  | 
|  971 }  // namespace appcache |  971 }  // namespace appcache | 
| OLD | NEW |