| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/search/search_ipc_router_policy_impl.h" | 5 #include "chrome/browser/ui/search/search_ipc_router_policy_impl.h" |
| 6 | 6 |
| 7 #include "chrome/browser/profiles/profile.h" | 7 #include "chrome/browser/profiles/profile.h" |
| 8 #include "chrome/browser/search/search.h" | 8 #include "chrome/browser/search/search.h" |
| 9 #include "content/public/browser/web_contents.h" | 9 #include "content/public/browser/web_contents.h" |
| 10 | 10 |
| 11 SearchIPCRouterPolicyImpl::SearchIPCRouterPolicyImpl( | 11 SearchIPCRouterPolicyImpl::SearchIPCRouterPolicyImpl( |
| 12 const content::WebContents* web_contents) | 12 const content::WebContents* web_contents) |
| 13 : web_contents_(web_contents), | 13 : web_contents_(web_contents), |
| 14 is_incognito_(true) { | 14 is_incognito_(true) { |
| 15 DCHECK(web_contents); | 15 DCHECK(web_contents); |
| 16 | 16 |
| 17 Profile* profile = | 17 Profile* profile = |
| 18 Profile::FromBrowserContext(web_contents_->GetBrowserContext()); | 18 Profile::FromBrowserContext(web_contents_->GetBrowserContext()); |
| 19 if (profile) | 19 if (profile) |
| 20 is_incognito_ = profile->IsOffTheRecord(); | 20 is_incognito_ = profile->IsOffTheRecord(); |
| 21 } | 21 } |
| 22 | 22 |
| 23 SearchIPCRouterPolicyImpl::~SearchIPCRouterPolicyImpl() {} | 23 SearchIPCRouterPolicyImpl::~SearchIPCRouterPolicyImpl() {} |
| 24 | 24 |
| 25 bool SearchIPCRouterPolicyImpl::ShouldProcessSetVoiceSearchSupport() { | |
| 26 return true; | |
| 27 } | |
| 28 | |
| 29 bool SearchIPCRouterPolicyImpl::ShouldProcessFocusOmnibox(bool is_active_tab) { | 25 bool SearchIPCRouterPolicyImpl::ShouldProcessFocusOmnibox(bool is_active_tab) { |
| 30 return is_active_tab && !is_incognito_ && search::IsInstantNTP(web_contents_); | 26 return is_active_tab && !is_incognito_ && search::IsInstantNTP(web_contents_); |
| 31 } | 27 } |
| 32 | 28 |
| 33 bool SearchIPCRouterPolicyImpl::ShouldProcessNavigateToURL(bool is_active_tab) { | 29 bool SearchIPCRouterPolicyImpl::ShouldProcessNavigateToURL(bool is_active_tab) { |
| 34 return is_active_tab && !is_incognito_ && search::IsInstantNTP(web_contents_); | 30 return is_active_tab && !is_incognito_ && search::IsInstantNTP(web_contents_); |
| 35 } | 31 } |
| 36 | 32 |
| 37 bool SearchIPCRouterPolicyImpl::ShouldProcessDeleteMostVisitedItem() { | 33 bool SearchIPCRouterPolicyImpl::ShouldProcessDeleteMostVisitedItem() { |
| 38 return !is_incognito_ && search::IsInstantNTP(web_contents_); | 34 return !is_incognito_ && search::IsInstantNTP(web_contents_); |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 } | 85 } |
| 90 | 86 |
| 91 bool SearchIPCRouterPolicyImpl::ShouldSendMostVisitedItems() { | 87 bool SearchIPCRouterPolicyImpl::ShouldSendMostVisitedItems() { |
| 92 return !is_incognito_ && search::IsInstantNTP(web_contents_); | 88 return !is_incognito_ && search::IsInstantNTP(web_contents_); |
| 93 } | 89 } |
| 94 | 90 |
| 95 bool SearchIPCRouterPolicyImpl::ShouldSendThemeBackgroundInfo() { | 91 bool SearchIPCRouterPolicyImpl::ShouldSendThemeBackgroundInfo() { |
| 96 return !is_incognito_ && search::IsInstantNTP(web_contents_); | 92 return !is_incognito_ && search::IsInstantNTP(web_contents_); |
| 97 } | 93 } |
| 98 | 94 |
| 99 bool SearchIPCRouterPolicyImpl::ShouldSendToggleVoiceSearch() { | |
| 100 return true; | |
| 101 } | |
| 102 | |
| 103 bool SearchIPCRouterPolicyImpl::ShouldSubmitQuery() { | 95 bool SearchIPCRouterPolicyImpl::ShouldSubmitQuery() { |
| 104 return true; | 96 return true; |
| 105 } | 97 } |
| OLD | NEW |