OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/browser/appcache/chrome_appcache_service.h" | 5 #include "content/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/browser_list.h" | 9 #include "chrome/browser/browser_list.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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 const tracked_objects::Location& from_here, | 138 const tracked_objects::Location& from_here, |
139 Task* task) { | 139 Task* task) { |
140 return BrowserThread::PostTask(ToBrowserThreadID(id), from_here, task); | 140 return BrowserThread::PostTask(ToBrowserThreadID(id), from_here, task); |
141 } | 141 } |
142 | 142 |
143 bool AppCacheThread::CurrentlyOn(int id) { | 143 bool AppCacheThread::CurrentlyOn(int id) { |
144 return BrowserThread::CurrentlyOn(ToBrowserThreadID(id)); | 144 return BrowserThread::CurrentlyOn(ToBrowserThreadID(id)); |
145 } | 145 } |
146 | 146 |
147 } // namespace appcache | 147 } // namespace appcache |
OLD | NEW |