Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(321)

Side by Side Diff: chrome/common/instant_types.cc

Issue 922793002: Add an alternate contextual search url to extract the search terms from window.location.hash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated the version number. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/common/instant_types_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "chrome/common/instant_types.h" 5 #include "chrome/common/instant_types.h"
6 6
7 #include "base/strings/utf_string_conversions.h" 7 #include "base/strings/utf_string_conversions.h"
8 #include "net/base/escape.h" 8 #include "net/base/escape.h"
9 9
10 namespace { 10 namespace {
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 const char kSearchQueryKey[] = "q"; 85 const char kSearchQueryKey[] = "q";
86 const char kOriginalQueryKey[] = "oq"; 86 const char kOriginalQueryKey[] = "oq";
87 const char kRLZParameterKey[] = "rlz"; 87 const char kRLZParameterKey[] = "rlz";
88 const char kInputEncodingKey[] = "ie"; 88 const char kInputEncodingKey[] = "ie";
89 const char kAssistedQueryStatsKey[] = "aqs"; 89 const char kAssistedQueryStatsKey[] = "aqs";
90 90
91 EmbeddedSearchRequestParams::EmbeddedSearchRequestParams() { 91 EmbeddedSearchRequestParams::EmbeddedSearchRequestParams() {
92 } 92 }
93 93
94 EmbeddedSearchRequestParams::EmbeddedSearchRequestParams(const GURL& url) { 94 EmbeddedSearchRequestParams::EmbeddedSearchRequestParams(const GURL& url) {
95 const std::string& url_params(url.query()); 95 const std::string& url_params(url.ref().empty()? url.query() : url.ref());
96 url::Component query, key, value; 96 url::Component query, key, value;
97 query.len = static_cast<int>(url_params.size()); 97 query.len = static_cast<int>(url_params.size());
98 98
99 const net::UnescapeRule::Type unescape_rules = 99 const net::UnescapeRule::Type unescape_rules =
100 net::UnescapeRule::CONTROL_CHARS | net::UnescapeRule::SPACES | 100 net::UnescapeRule::CONTROL_CHARS | net::UnescapeRule::SPACES |
101 net::UnescapeRule::URL_SPECIAL_CHARS | net::UnescapeRule::NORMAL | 101 net::UnescapeRule::URL_SPECIAL_CHARS | net::UnescapeRule::NORMAL |
102 net::UnescapeRule::REPLACE_PLUS_WITH_SPACE; 102 net::UnescapeRule::REPLACE_PLUS_WITH_SPACE;
103 103
104 while (url::ExtractQueryKeyValue(url_params.c_str(), &query, &key, &value)) { 104 while (url::ExtractQueryKeyValue(url_params.c_str(), &query, &key, &value)) {
105 if (!key.is_nonempty()) 105 if (!key.is_nonempty())
(...skipping 15 matching lines...) Expand all
121 value_param, net::UnescapeRule::NORMAL); 121 value_param, net::UnescapeRule::NORMAL);
122 } else if (key_param == kAssistedQueryStatsKey) { 122 } else if (key_param == kAssistedQueryStatsKey) {
123 assisted_query_stats = net::UnescapeAndDecodeUTF8URLComponent( 123 assisted_query_stats = net::UnescapeAndDecodeUTF8URLComponent(
124 value_param, net::UnescapeRule::NORMAL); 124 value_param, net::UnescapeRule::NORMAL);
125 } 125 }
126 } 126 }
127 } 127 }
128 128
129 EmbeddedSearchRequestParams::~EmbeddedSearchRequestParams() { 129 EmbeddedSearchRequestParams::~EmbeddedSearchRequestParams() {
130 } 130 }
OLDNEW
« no previous file with comments | « no previous file | chrome/common/instant_types_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698