blob: ce3beb07c1d2fea998f28099ee2d13d7b0ea754d (
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
53
54
55
56
57
58
59
60
|
// Copyright 2014 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.
#ifndef EXTENSIONS_BROWSER_TEST_EXTENSION_REGISTRY_OBSERVER_H_
#define EXTENSIONS_BROWSER_TEST_EXTENSION_REGISTRY_OBSERVER_H_
#include "base/scoped_observer.h"
#include "extensions/browser/extension_registry_observer.h"
namespace extensions {
class ExtensionRegistry;
// A helper class that listen for ExtensionRegistry notifications.
class TestExtensionRegistryObserver : public ExtensionRegistryObserver {
public:
explicit TestExtensionRegistryObserver(ExtensionRegistry* registry,
const std::string& extension_id);
virtual ~TestExtensionRegistryObserver();
void WaitForExtensionWillBeInstalled();
void WaitForExtensionUninstalled();
void WaitForExtensionLoaded();
void WaitForExtensionUnloaded();
private:
class Waiter;
// ExtensionRegistryObserver.
virtual void OnExtensionWillBeInstalled(
content::BrowserContext* browser_context,
const Extension* extension,
bool is_update,
bool from_ephemeral,
const std::string& old_name) OVERRIDE;
virtual void OnExtensionUninstalled(content::BrowserContext* browser_context,
const Extension* extension) OVERRIDE;
virtual void OnExtensionLoaded(content::BrowserContext* browser_context,
const Extension* extension) OVERRIDE;
virtual void OnExtensionUnloaded(
content::BrowserContext* browser_context,
const Extension* extension,
UnloadedExtensionInfo::Reason reason) OVERRIDE;
scoped_ptr<Waiter> will_be_installed_waiter_;
scoped_ptr<Waiter> uninstalled_waiter_;
scoped_ptr<Waiter> loaded_waiter_;
scoped_ptr<Waiter> unloaded_waiter_;
ScopedObserver<ExtensionRegistry, ExtensionRegistryObserver>
extension_registry_observer_;
std::string extension_id_;
DISALLOW_COPY_AND_ASSIGN(TestExtensionRegistryObserver);
};
} // namespace extensions
#endif // EXTENSIONS_BROWSER_TEST_EXTENSION_REGISTRY_OBSERVER_H_
|