OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OmniboxView
(Results
1 - 25
of
36
) sorted by null
1
2
/external/chromium_org/chrome/browser/ui/omnibox/
omnibox_view.cc
6
// of
OmniboxView
.
19
base::string16
OmniboxView
::StripJavascriptSchemas(const base::string16& text) {
29
base::string16
OmniboxView
::SanitizeTextForPaste(const base::string16& text) {
49
base::string16
OmniboxView
::GetClipboardText() {
79
OmniboxView
::~
OmniboxView
() {
82
void
OmniboxView
::OpenMatch(const AutocompleteMatch& match,
93
bool
OmniboxView
::IsEditingOrEmpty() const {
98
int
OmniboxView
::GetIcon() const {
105
void
OmniboxView
::SetUserText(const base::string16& text)
[
all
...]
location_bar.h
23
class
OmniboxView
;
77
virtual const
OmniboxView
* GetOmniboxView() const = 0;
78
virtual
OmniboxView
* GetOmniboxView() = 0;
omnibox_view_unittest.cc
43
OmniboxView
::StripJavascriptSchemas(ASCIIToUTF16(urls[i])));
56
EXPECT_EQ(kFixedURL,
OmniboxView
::SanitizeTextForPaste(kWrappedURL));
64
EXPECT_EQ(kFixedAddress,
OmniboxView
::SanitizeTextForPaste(kWrappedAddress));
79
EXPECT_EQ(kPlainText,
OmniboxView
::GetClipboardText());
89
EXPECT_EQ(kSpace1,
OmniboxView
::GetClipboardText());
97
EXPECT_EQ(base::string16(),
OmniboxView
::GetClipboardText());
110
EXPECT_EQ(ASCIIToUTF16(kURL),
OmniboxView
::GetClipboardText());
119
EXPECT_EQ(kPlainText,
OmniboxView
::GetClipboardText());
129
EXPECT_TRUE(
OmniboxView
::GetClipboardText().empty());
omnibox_view.h
5
// This file defines the interface class
OmniboxView
. Each toolkit will
51
class
OmniboxView
{
53
virtual ~
OmniboxView
();
257
OmniboxView
(Profile* profile,
omnibox_view_browsertest.cc
157
OmniboxView
** omnibox_view) {
166
void GetOmniboxView(
OmniboxView
** omnibox_view) {
231
OmniboxView
* omnibox_view = NULL;
367
OmniboxView
* omnibox_view = NULL;
437
OmniboxView
* omnibox_view = NULL;
490
OmniboxView
* omnibox_view = NULL;
553
OmniboxView
* omnibox_view = NULL;
572
OmniboxView
* omnibox_view = NULL;
596
OmniboxView
* omnibox_view = NULL;
644
OmniboxView
* omnibox_view = NULL
[
all
...]
omnibox_edit_model.h
27
class
OmniboxView
;
75
OmniboxEditModel(
OmniboxView
* view,
252
//
OmniboxView
::SetFocus(), and the mouse handlers in
OmniboxView
. See
304
// Called by the
OmniboxView
after something changes, with details about what
432
OmniboxView
* view_;
omnibox_edit_unittest.cc
19
class TestingOmniboxView : public
OmniboxView
{
22
:
OmniboxView
(NULL, controller, NULL) {}
24
//
OmniboxView
:
/external/chromium_org/chrome/browser/ui/views/omnibox/
touch_omnibox_popup_contents_view.h
13
class
OmniboxView
;
46
OmniboxView
* omnibox_view,
omnibox_popup_contents_view.h
22
class
OmniboxView
;
33
OmniboxView
* omnibox_view,
78
OmniboxView
* omnibox_view,
143
OmniboxView
* omnibox_view_;
omnibox_view_views_browsertest.cc
33
OmniboxView
** omnibox_view) {
114
OmniboxView
* view = browser()->window()->GetLocationBar()->GetOmniboxView();
137
OmniboxView
* omnibox_view = NULL;
193
OmniboxView
* omnibox_view = NULL;
touch_omnibox_popup_contents_view.cc
60
OmniboxView
* omnibox_view,
omnibox_popup_contents_view.cc
46
OmniboxView
* omnibox_view,
64
OmniboxView
* omnibox_view,
/external/chromium_org/chrome/browser/ui/cocoa/omnibox/
omnibox_popup_view_mac.h
21
class
OmniboxView
;
28
OmniboxPopupViewMac(
OmniboxView
* omnibox_view,
104
OmniboxView
* omnibox_view_;
omnibox_view_mac.h
21
// Implements
OmniboxView
on an AutocompleteTextField.
22
class OmniboxViewMac : public
OmniboxView
,
31
//
OmniboxView
:
/external/chromium_org/chrome/browser/ui/search/
instant_test_utils.h
27
class
OmniboxView
;
58
OmniboxView
* omnibox() {
search_tab_helper.cc
410
OmniboxView
* omnibox = browser->window()->GetLocationBar()->GetOmniboxView();
509
OmniboxView
* omnibox = browser->window()->GetLocationBar()->GetOmniboxView();
/external/chromium_org/chrome/browser/ui/gtk/omnibox/
omnibox_popup_view_gtk.h
28
class
OmniboxView
;
39
OmniboxView
* omnibox_view,
123
OmniboxView
* omnibox_view_;
/external/chromium_org/chrome/browser/extensions/api/omnibox/
omnibox_api_interactive_test.cc
22
OmniboxView
* omnibox_view = location_bar->GetOmniboxView();
omnibox_api_browsertest.cc
141
OmniboxView
* omnibox_view = location_bar->GetOmniboxView();
159
OmniboxView
* omnibox_view = location_bar->GetOmniboxView();
/external/chromium_org/chrome/test/base/
test_browser_window.cc
69
const
OmniboxView
* TestBrowserWindow::TestLocationBar::GetOmniboxView() const {
73
OmniboxView
* TestBrowserWindow::TestLocationBar::GetOmniboxView() {
test_browser_window.h
17
class
OmniboxView
;
179
virtual const
OmniboxView
* GetOmniboxView() const OVERRIDE;
180
virtual
OmniboxView
* GetOmniboxView() OVERRIDE;
/external/chromium_org/chrome/browser/ui/cocoa/location_bar/
location_bar_view_mac.h
72
virtual const
OmniboxView
* GetOmniboxView() const OVERRIDE;
73
virtual
OmniboxView
* GetOmniboxView() OVERRIDE;
/external/chromium_org/chrome/browser/autocomplete/
autocomplete_browsertest.cc
78
OmniboxView
* omnibox_view = location_bar->GetOmniboxView();
134
OmniboxView
* omnibox_view = location_bar->GetOmniboxView();
180
OmniboxView
* omnibox_view = location_bar->GetOmniboxView();
204
OmniboxView
* omnibox_view = location_bar->GetOmniboxView();
/external/chromium_org/chrome/browser/ui/views/location_bar/
location_bar_view.h
215
// we can't show the autocompletion inside the actual
OmniboxView
. See
300
virtual const
OmniboxView
* GetOmniboxView() const OVERRIDE;
301
virtual
OmniboxView
* GetOmniboxView() OVERRIDE;
453
// we shouldn't change the text or selection inside the
OmniboxView
itself,
455
// we show any autocompletion in a separate field after the
OmniboxView
.
/external/chromium_org/chrome/browser/ui/gtk/
location_bar_view_gtk.h
136
virtual const
OmniboxView
* GetOmniboxView() const OVERRIDE;
137
virtual
OmniboxView
* GetOmniboxView() OVERRIDE;
Completed in 1464 milliseconds
1
2