| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authos. All rights reserved. | 1 // Copyright (c) 2009 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 "base/compiler_specific.h" | 5 #include "base/compiler_specific.h" |
| 6 #include "base/pickle.h" | 6 #include "base/pickle.h" |
| 7 #include "base/thread.h" | 7 #include "base/thread.h" |
| 8 #include "base/waitable_event.h" | 8 #include "base/waitable_event.h" |
| 9 #include "net/base/io_buffer.h" | 9 #include "net/base/io_buffer.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
| 11 #include "webkit/appcache/appcache_response.h" | 11 #include "webkit/appcache/appcache_response.h" |
| (...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 669 TEST_F(AppCacheResponseTest, DeleteWithinCallbacks) { | 669 TEST_F(AppCacheResponseTest, DeleteWithinCallbacks) { |
| 670 RunTestOnIOThread(&AppCacheResponseTest::DeleteWithinCallbacks); | 670 RunTestOnIOThread(&AppCacheResponseTest::DeleteWithinCallbacks); |
| 671 } | 671 } |
| 672 | 672 |
| 673 TEST_F(AppCacheResponseTest, DeleteWithIOPending) { | 673 TEST_F(AppCacheResponseTest, DeleteWithIOPending) { |
| 674 RunTestOnIOThread(&AppCacheResponseTest::DeleteWithIOPending); | 674 RunTestOnIOThread(&AppCacheResponseTest::DeleteWithIOPending); |
| 675 } | 675 } |
| 676 | 676 |
| 677 } // namespace appcache | 677 } // namespace appcache |
| 678 | 678 |
| OLD | NEW |