OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #include "chrome/browser/extensions/external_extension_loader.h" | |
6 | |
7 #include "base/logging.h" | |
8 #include "base/values.h" | |
9 #include "chrome/browser/browser_thread.h" | |
10 #include "chrome/browser/extensions/external_extension_provider_impl.h" | |
11 | |
12 void ExternalExtensionLoader::Init( | |
13 ExternalExtensionProviderImpl* owner) { | |
14 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | |
Aaron Boodman
2011/01/06 18:54:40
Don't be a wuss: s/DCHECK/CHECK/g
gfeher
2011/01/07 00:10:01
Done.
| |
15 owner_ = owner; | |
16 } | |
17 | |
18 void ExternalExtensionLoader::StartLoading() { | |
19 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | |
20 if (running_) return; | |
Aaron Boodman
2011/01/06 18:54:40
How would this ever get called twice?
gfeher
2011/01/07 00:10:01
This can get called twice in case of ExternalPolic
| |
21 running_ = true; | |
22 Load(); | |
23 } | |
24 | |
25 void ExternalExtensionLoader::OwnerShutdown() { | |
26 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | |
27 owner_ = NULL; | |
28 } | |
29 | |
30 void ExternalExtensionLoader::LoadFinished() { | |
31 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | |
32 running_ = false; | |
33 if (owner_) { | |
34 AutoLock auto_(lock_); | |
35 owner_->SetPrefs(prefs_.release()); | |
36 } | |
37 } | |
OLD | NEW |