| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "chrome/common/appcache/chrome_appcache_service.h" | 5 #include "chrome/browser/appcache/chrome_appcache_service.h" |
| 6 | 6 |
| 7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
| 8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
| 9 #include "chrome/browser/chrome_thread.h" | 9 #include "chrome/browser/chrome_thread.h" |
| 10 #include "chrome/browser/net/chrome_url_request_context.h" | 10 #include "chrome/browser/net/chrome_url_request_context.h" |
| 11 #include "chrome/common/chrome_constants.h" | 11 #include "chrome/common/chrome_constants.h" |
| 12 #include "chrome/common/notification_service.h" | 12 #include "chrome/common/notification_service.h" |
| 13 #include "net/base/net_errors.h" | 13 #include "net/base/net_errors.h" |
| 14 #include "webkit/appcache/appcache_thread.h" | 14 #include "webkit/appcache/appcache_thread.h" |
| 15 | 15 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 const tracked_objects::Location& from_here, | 88 const tracked_objects::Location& from_here, |
| 89 Task* task) { | 89 Task* task) { |
| 90 return ChromeThread::PostTask(ToChromeThreadID(id), from_here, task); | 90 return ChromeThread::PostTask(ToChromeThreadID(id), from_here, task); |
| 91 } | 91 } |
| 92 | 92 |
| 93 bool AppCacheThread::CurrentlyOn(int id) { | 93 bool AppCacheThread::CurrentlyOn(int id) { |
| 94 return ChromeThread::CurrentlyOn(ToChromeThreadID(id)); | 94 return ChromeThread::CurrentlyOn(ToChromeThreadID(id)); |
| 95 } | 95 } |
| 96 | 96 |
| 97 } // namespace appcache | 97 } // namespace appcache |
| OLD | NEW |