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

Side by Side Diff: webkit/browser/appcache/appcache_request_handler_unittest.cc

Issue 19633002: Use a direct include of the message_loop header in webkit/, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
OLDNEW
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
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
OLDNEW
« no previous file with comments | « webkit/browser/appcache/appcache_quota_client_unittest.cc ('k') | webkit/browser/appcache/appcache_response.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698