Home
last modified time | relevance | path

Searched refs:ShouldProcessPasteIntoOmnibox (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/chrome/browser/ui/search/
Dsearch_ipc_router_policy_unittest.cc118 EXPECT_TRUE(GetSearchIPCRouterPolicy()->ShouldProcessPasteIntoOmnibox(true)); in TEST_F()
124 EXPECT_FALSE(GetSearchIPCRouterPolicy()->ShouldProcessPasteIntoOmnibox(true)); in TEST_F()
138 EXPECT_FALSE(router_policy->ShouldProcessPasteIntoOmnibox(true)); in TEST_F()
148 EXPECT_FALSE(router_policy->ShouldProcessPasteIntoOmnibox(false)); in TEST_F()
Dsearch_ipc_router_policy_impl.h31 virtual bool ShouldProcessPasteIntoOmnibox(bool is_active_tab) OVERRIDE;
Dsearch_ipc_router_policy_impl.cc53 bool SearchIPCRouterPolicyImpl::ShouldProcessPasteIntoOmnibox( in ShouldProcessPasteIntoOmnibox() function in SearchIPCRouterPolicyImpl
Dsearch_ipc_router.h95 virtual bool ShouldProcessPasteIntoOmnibox(bool is_active_tab) = 0;
Dsearch_ipc_router_unittest.cc72 MOCK_METHOD1(ShouldProcessPasteIntoOmnibox, bool(bool));
563 EXPECT_CALL(*policy, ShouldProcessPasteIntoOmnibox(is_active_tab)).Times(0); in TEST_F()
580 EXPECT_CALL(*policy, ShouldProcessPasteIntoOmnibox(is_active_tab)).Times(1) in TEST_F()
599 EXPECT_CALL(*policy, ShouldProcessPasteIntoOmnibox(is_active_tab)).Times(1) in TEST_F()
Dsearch_ipc_router.cc254 if (!policy_->ShouldProcessPasteIntoOmnibox(is_active_tab_)) in OnPasteAndOpenDropDown()