blob: 6676626d60795bed33c17575b6db8df65262699a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/automation/automation_provider_list.h"
#include <algorithm>
#include "base/logging.h"
#include "chrome/browser/automation/automation_provider.h"
#include "chrome/browser/browser_process.h"
AutomationProviderList* AutomationProviderList::instance_ = NULL;
AutomationProviderList::AutomationProviderList() {
}
AutomationProviderList::~AutomationProviderList() {
iterator iter = automation_providers_.begin();
while (iter != automation_providers_.end()) {
(*iter)->Release();
iter = automation_providers_.erase(iter);
}
instance_ = NULL;
}
bool AutomationProviderList::AddProvider(AutomationProvider* provider) {
provider->AddRef();
automation_providers_.push_back(provider);
return true;
}
bool AutomationProviderList::RemoveProvider(AutomationProvider* provider) {
const iterator remove_provider =
find(automation_providers_.begin(), automation_providers_.end(), provider);
if (remove_provider != automation_providers_.end()) {
(*remove_provider)->Release();
automation_providers_.erase(remove_provider);
if (automation_providers_.empty())
OnLastProviderRemoved();
return true;
}
return false;
}
AutomationProviderList* AutomationProviderList::GetInstance() {
if (!instance_) {
instance_ = new AutomationProviderList;
}
DCHECK(NULL != instance_);
return instance_;
}
|