OLD | NEW |
(Empty) | |
| 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 |
| 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 CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
| 15 owner_ = owner; |
| 16 } |
| 17 |
| 18 void ExternalExtensionLoader::OwnerShutdown() { |
| 19 CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
| 20 owner_ = NULL; |
| 21 } |
| 22 |
| 23 void ExternalExtensionLoader::LoadFinished() { |
| 24 CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
| 25 running_ = false; |
| 26 if (owner_) { |
| 27 owner_->SetPrefs(prefs_.release()); |
| 28 } |
| 29 } |
OLD | NEW |