HomeSort by relevance Sort by last modified time
    Searched refs:ShouldProcessNavigateToURL (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/chrome/browser/ui/search/
search_ipc_router_policy_impl.h 26 virtual bool ShouldProcessNavigateToURL(bool is_active_tab) OVERRIDE;
search_ipc_router_policy_unittest.cc 113 EXPECT_TRUE(GetSearchIPCRouterPolicy()->ShouldProcessNavigateToURL(true));
118 EXPECT_FALSE(GetSearchIPCRouterPolicy()->ShouldProcessNavigateToURL(true));
121 EXPECT_FALSE(GetSearchIPCRouterPolicy()->ShouldProcessNavigateToURL(true));
141 EXPECT_FALSE(router_policy->ShouldProcessNavigateToURL(true));
155 EXPECT_FALSE(router_policy->ShouldProcessNavigateToURL(false));
search_ipc_router_policy_impl.cc 33 bool SearchIPCRouterPolicyImpl::ShouldProcessNavigateToURL(bool is_active_tab) {
search_ipc_router.h 98 virtual bool ShouldProcessNavigateToURL(bool is_active_tab) = 0;
search_ipc_router_unittest.cc 69 MOCK_METHOD1(ShouldProcessNavigateToURL, bool(bool));
213 EXPECT_CALL(*policy, ShouldProcessNavigateToURL(is_active_tab)).Times(0);
321 EXPECT_CALL(*policy, ShouldProcessNavigateToURL(is_active_tab)).Times(1)
342 EXPECT_CALL(*policy, ShouldProcessNavigateToURL(is_active_tab)).Times(1)
560 EXPECT_CALL(*policy, ShouldProcessNavigateToURL(is_active_tab)).Times(0);
    [all...]
search_ipc_router.cc 231 if (!policy_->ShouldProcessNavigateToURL(is_active_tab_))

Completed in 150 milliseconds