| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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 "components/toolbar/toolbar_model_impl.h" | 5 #include "components/toolbar/toolbar_model_impl.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
| 9 #include "base/time/time.h" | 9 #include "base/time/time.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| 11 #include "components/google/core/browser/google_util.h" | |
| 12 #include "components/grit/components_scaled_resources.h" | 11 #include "components/grit/components_scaled_resources.h" |
| 13 #include "components/prefs/pref_service.h" | 12 #include "components/prefs/pref_service.h" |
| 14 #include "components/security_state/security_state_model.h" | 13 #include "components/security_state/security_state_model.h" |
| 15 #include "components/strings/grit/components_strings.h" | 14 #include "components/strings/grit/components_strings.h" |
| 16 #include "components/toolbar/toolbar_model_delegate.h" | 15 #include "components/toolbar/toolbar_model_delegate.h" |
| 17 #include "components/url_formatter/elide_url.h" | 16 #include "components/url_formatter/elide_url.h" |
| 18 #include "components/url_formatter/url_formatter.h" | 17 #include "components/url_formatter/url_formatter.h" |
| 19 #include "net/cert/cert_status_flags.h" | 18 #include "net/cert/cert_status_flags.h" |
| 20 #include "net/cert/x509_certificate.h" | 19 #include "net/cert/x509_certificate.h" |
| 21 #include "net/ssl/ssl_connection_status_flags.h" | 20 #include "net/ssl/ssl_connection_status_flags.h" |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 // Truncating the URL breaks editing and then pressing enter, but hopefully | 58 // Truncating the URL breaks editing and then pressing enter, but hopefully |
| 60 // people won't try to do much with such enormous URLs anyway. If this becomes | 59 // people won't try to do much with such enormous URLs anyway. If this becomes |
| 61 // a real problem, we could perhaps try to keep some sort of different "elided | 60 // a real problem, we could perhaps try to keep some sort of different "elided |
| 62 // visible URL" where editing affects and reloads the "real underlying URL", | 61 // visible URL" where editing affects and reloads the "real underlying URL", |
| 63 // but this seems very tricky for little gain. | 62 // but this seems very tricky for little gain. |
| 64 return gfx::TruncateString(formatted_text, max_url_display_chars_ - 1, | 63 return gfx::TruncateString(formatted_text, max_url_display_chars_ - 1, |
| 65 gfx::CHARACTER_BREAK) + | 64 gfx::CHARACTER_BREAK) + |
| 66 gfx::kEllipsisUTF16; | 65 gfx::kEllipsisUTF16; |
| 67 } | 66 } |
| 68 | 67 |
| 69 base::string16 ToolbarModelImpl::GetCorpusNameForMobile() const { | |
| 70 if (!WouldPerformSearchTermReplacement(false)) | |
| 71 return base::string16(); | |
| 72 GURL url(GetURL()); | |
| 73 // If there is a query in the url fragment look for the corpus name there, | |
| 74 // otherwise look for the corpus name in the query parameters. | |
| 75 const std::string& query_str(google_util::HasGoogleSearchQueryParam( | |
| 76 url.ref_piece()) ? url.ref() : url.query()); | |
| 77 url::Component query(0, static_cast<int>(query_str.length())), key, value; | |
| 78 const char kChipKey[] = "sboxchip"; | |
| 79 while (url::ExtractQueryKeyValue(query_str.c_str(), &query, &key, &value)) { | |
| 80 if (key.is_nonempty() && query_str.substr(key.begin, key.len) == kChipKey) { | |
| 81 return net::UnescapeAndDecodeUTF8URLComponent( | |
| 82 query_str.substr(value.begin, value.len), | |
| 83 net::UnescapeRule::NORMAL); | |
| 84 } | |
| 85 } | |
| 86 return base::string16(); | |
| 87 } | |
| 88 | |
| 89 GURL ToolbarModelImpl::GetURL() const { | 68 GURL ToolbarModelImpl::GetURL() const { |
| 90 GURL url; | 69 GURL url; |
| 91 return delegate_->GetURL(&url) ? url : GURL(url::kAboutBlankURL); | 70 return delegate_->GetURL(&url) ? url : GURL(url::kAboutBlankURL); |
| 92 } | 71 } |
| 93 | 72 |
| 94 bool ToolbarModelImpl::WouldPerformSearchTermReplacement( | 73 bool ToolbarModelImpl::WouldPerformSearchTermReplacement( |
| 95 bool ignore_editing) const { | 74 bool ignore_editing) const { |
| 96 return !GetSearchTerms(ignore_editing).empty(); | 75 return !GetSearchTerms(ignore_editing).empty(); |
| 97 } | 76 } |
| 98 | 77 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 bool ToolbarModelImpl::ShouldDisplayURL() const { | 145 bool ToolbarModelImpl::ShouldDisplayURL() const { |
| 167 return delegate_->ShouldDisplayURL(); | 146 return delegate_->ShouldDisplayURL(); |
| 168 } | 147 } |
| 169 | 148 |
| 170 base::string16 ToolbarModelImpl::GetSearchTerms(bool ignore_editing) const { | 149 base::string16 ToolbarModelImpl::GetSearchTerms(bool ignore_editing) const { |
| 171 if (!url_replacement_enabled() || (input_in_progress() && !ignore_editing)) | 150 if (!url_replacement_enabled() || (input_in_progress() && !ignore_editing)) |
| 172 return base::string16(); | 151 return base::string16(); |
| 173 | 152 |
| 174 return delegate_->GetSearchTerms(GetSecurityLevel(ignore_editing)); | 153 return delegate_->GetSearchTerms(GetSecurityLevel(ignore_editing)); |
| 175 } | 154 } |
| OLD | NEW |