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

Side by Side Diff: extensions/browser/info_map.cc

Issue 102103005: Move c/c/e/extension_set to top-level extensions/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years 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
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698