blob: f7fce2ea277a061c5973474f9159f0f68b47bfae (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
// Copyright (c) 2011 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.
//
//
// This file contains the Extension App autocomplete provider. The provider
// is responsible for keeping track of which Extension Apps are installed and
// their URLs. An instance of it gets created and managed by the autocomplete
// controller.
//
// For more information on the autocomplete system in general, including how
// the autocomplete controller and autocomplete providers work, see
// chrome/browser/autocomplete.h.
#ifndef CHROME_BROWSER_AUTOCOMPLETE_EXTENSION_APP_PROVIDER_H_
#define CHROME_BROWSER_AUTOCOMPLETE_EXTENSION_APP_PROVIDER_H_
#pragma once
#include <utility>
#include <vector>
#include "base/compiler_specific.h"
#include "chrome/browser/autocomplete/autocomplete.h"
#include "chrome/browser/autocomplete/autocomplete_match.h"
#include "content/common/notification_observer.h"
#include "content/common/notification_registrar.h"
class ExtensionAppProvider : public AutocompleteProvider,
public NotificationObserver {
public:
ExtensionAppProvider(ACProviderListener* listener, Profile* profile);
// Only used for testing.
void AddExtensionAppForTesting(const string16& app_name,
const string16& url);
// AutocompleteProvider implementation:
virtual void Start(const AutocompleteInput& input,
bool minimal_changes) OVERRIDE;
private:
// An ExtensionApp is a pair of Extension Name and the Launch URL.
typedef std::pair<string16, string16> ExtensionApp;
typedef std::vector<ExtensionApp> ExtensionApps;
virtual ~ExtensionAppProvider();
// Fetch the current app list and cache it locally.
void RefreshAppList();
// Register for install/uninstall notification so we can update our cache.
void RegisterForNotifications();
// Calculate the relevance of the match.
int CalculateRelevance(AutocompleteInput::Type type,
int input_length,
int target_length,
const GURL& url);
// NotificationObserver implementation:
virtual void Observe(int type,
const NotificationSource& source,
const NotificationDetails& details) OVERRIDE;
NotificationRegistrar registrar_;
// Our cache of ExtensionApp objects (name + url) representing the extension
// apps we know about.
ExtensionApps extension_apps_;
DISALLOW_COPY_AND_ASSIGN(ExtensionAppProvider);
};
#endif // CHROME_BROWSER_AUTOCOMPLETE_EXTENSION_APP_PROVIDER_H_
|