blob: 538ce85cb03c7c4f6aa8df530f0c69fe410b2178 (
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) 2010 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 CHROME_BROWSER_EXTENSIONS_EXTENSION_OMNIBOX_API_H_
#define CHROME_BROWSER_EXTENSIONS_EXTENSION_OMNIBOX_API_H_
#pragma once
#include "base/string16.h"
#include "chrome/browser/autocomplete/autocomplete.h"
#include "chrome/browser/extensions/extension_function.h"
// Event router class for events related to the omnibox API.
class ExtensionOmniboxEventRouter {
public:
// The user has just typed the omnibox keyword. This is sent exactly once in
// a given input session, before any OnInputChanged events.
static void OnInputStarted(
Profile* profile, const std::string& extension_id);
// The user has changed what is typed into the omnibox while in an extension
// keyword session. Returns true if someone is listening to this event, and
// thus we have some degree of confidence we'll get a response.
static bool OnInputChanged(
Profile* profile, const std::string& extension_id,
const std::string& input, int suggest_id);
// The user has accepted the omnibox input.
static void OnInputEntered(
Profile* profile, const std::string& extension_id,
const std::string& input);
// The user has cleared the keyword, or closed the omnibox popup. This is
// sent at most once in a give input session, after any OnInputChanged events.
static void OnInputCancelled(
Profile* profile, const std::string& extension_id);
private:
DISALLOW_COPY_AND_ASSIGN(ExtensionOmniboxEventRouter);
};
class OmniboxSendSuggestionsFunction : public SyncExtensionFunction {
public:
virtual bool RunImpl();
DECLARE_EXTENSION_FUNCTION_NAME("experimental.omnibox.sendSuggestions");
};
struct ExtensionOmniboxSuggestion {
ExtensionOmniboxSuggestion();
~ExtensionOmniboxSuggestion();
// The text that gets put in the edit box.
string16 content;
// The text that is displayed in the drop down.
string16 description;
// Contains style ranges for the description.
ACMatchClassifications description_styles;
};
struct ExtensionOmniboxSuggestions {
ExtensionOmniboxSuggestions();
~ExtensionOmniboxSuggestions();
int request_id;
std::vector<ExtensionOmniboxSuggestion> suggestions;
private:
// This class is passed around by pointer.
DISALLOW_COPY_AND_ASSIGN(ExtensionOmniboxSuggestions);
};
#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_OMNIBOX_API_H_
|