OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "extensions/browser/info_map.h" | 5 #include "extensions/browser/info_map.h" |
6 | 6 |
7 #include "chrome/common/extensions/extension_set.h" | |
8 #include "content/public/browser/browser_thread.h" | 7 #include "content/public/browser/browser_thread.h" |
9 #include "extensions/common/constants.h" | 8 #include "extensions/common/constants.h" |
10 #include "extensions/common/extension.h" | 9 #include "extensions/common/extension.h" |
| 10 #include "extensions/common/extension_set.h" |
11 #include "extensions/common/manifest_handlers/incognito_info.h" | 11 #include "extensions/common/manifest_handlers/incognito_info.h" |
12 | 12 |
13 using content::BrowserThread; | 13 using content::BrowserThread; |
14 | 14 |
15 namespace extensions { | 15 namespace extensions { |
16 | 16 |
17 namespace { | 17 namespace { |
18 | 18 |
19 void CheckOnValidThread() { | 19 void CheckOnValidThread() { |
20 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 20 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 } | 193 } |
194 | 194 |
195 InfoMap::~InfoMap() { | 195 InfoMap::~InfoMap() { |
196 if (quota_service_) { | 196 if (quota_service_) { |
197 BrowserThread::DeleteSoon( | 197 BrowserThread::DeleteSoon( |
198 BrowserThread::IO, FROM_HERE, quota_service_.release()); | 198 BrowserThread::IO, FROM_HERE, quota_service_.release()); |
199 } | 199 } |
200 } | 200 } |
201 | 201 |
202 } // namespace extensions | 202 } // namespace extensions |
OLD | NEW |