OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PasteIntoOmnibox
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/chrome/browser/ui/search/
search_ipc_router.h
71
virtual void
PasteIntoOmnibox
(const base::string16& text) = 0;
search_tab_helper.h
167
virtual void
PasteIntoOmnibox
(const base::string16& text) OVERRIDE;
search_ipc_router.cc
257
delegate_->
PasteIntoOmnibox
(text);
search_ipc_router_unittest.cc
57
MOCK_METHOD1(
PasteIntoOmnibox
, void(const base::string16&));
562
EXPECT_CALL(*mock_delegate(),
PasteIntoOmnibox
(text)).Times(0);
579
EXPECT_CALL(*mock_delegate(),
PasteIntoOmnibox
(text)).Times(1);
592
EXPECT_CALL(*mock_delegate(),
PasteIntoOmnibox
(text)).Times(0);
[
all
...]
search_tab_helper_unittest.cc
55
MOCK_METHOD1(
PasteIntoOmnibox
, void(const base::string16&));
search_tab_helper.cc
502
void SearchTabHelper::
PasteIntoOmnibox
(const base::string16& text) {
Completed in 168 milliseconds