OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OnChromeIdentityCheck
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/chrome/browser/ui/search/
search_ipc_router.h
76
virtual void
OnChromeIdentityCheck
(const base::string16& identity) = 0;
180
void
OnChromeIdentityCheck
(int page_id, const base::string16& identity) const;
search_tab_helper_unittest.cc
56
MOCK_METHOD1(
OnChromeIdentityCheck
, void(const base::string16& identity));
148
search_tab_helper->
OnChromeIdentityCheck
(test_identity);
168
search_tab_helper->
OnChromeIdentityCheck
(test_identity);
188
search_tab_helper->
OnChromeIdentityCheck
(test_identity);
208
search_tab_helper->
OnChromeIdentityCheck
(test_identity);
search_ipc_router.cc
125
OnChromeIdentityCheck
);
260
void SearchIPCRouter::
OnChromeIdentityCheck
(
270
delegate_->
OnChromeIdentityCheck
(identity);
search_tab_helper.h
168
virtual void
OnChromeIdentityCheck
(const base::string16& identity) OVERRIDE;
search_ipc_router_unittest.cc
58
MOCK_METHOD1(
OnChromeIdentityCheck
, void(const base::string16& identity));
379
EXPECT_CALL(*mock_delegate(),
OnChromeIdentityCheck
(test_identity)).Times(1);
397
EXPECT_CALL(*mock_delegate(),
OnChromeIdentityCheck
(test_identity)).Times(0);
[
all
...]
search_tab_helper.cc
530
void SearchTabHelper::
OnChromeIdentityCheck
(const base::string16& identity) {
Completed in 205 milliseconds