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

Side by Side Diff: chrome/browser/autocomplete/keyword_provider.cc

Issue 183853011: Move TrimWhitespace to the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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/browser/autocomplete/keyword_provider.h" 5 #include "chrome/browser/autocomplete/keyword_provider.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 // Return first token as keyword. 122 // Return first token as keyword.
123 return input.substr(0, first_white); 123 return input.substr(0, first_white);
124 } 124 }
125 125
126 // static 126 // static
127 base::string16 KeywordProvider::SplitReplacementStringFromInput( 127 base::string16 KeywordProvider::SplitReplacementStringFromInput(
128 const base::string16& input, 128 const base::string16& input,
129 bool trim_leading_whitespace) { 129 bool trim_leading_whitespace) {
130 // The input may contain leading whitespace, strip it. 130 // The input may contain leading whitespace, strip it.
131 base::string16 trimmed_input; 131 base::string16 trimmed_input;
132 TrimWhitespace(input, TRIM_LEADING, &trimmed_input); 132 base::TrimWhitespace(input, base::TRIM_LEADING, &trimmed_input);
133 133
134 // And extract the replacement string. 134 // And extract the replacement string.
135 base::string16 remaining_input; 135 base::string16 remaining_input;
136 SplitKeywordFromInput(trimmed_input, trim_leading_whitespace, 136 SplitKeywordFromInput(trimmed_input, trim_leading_whitespace,
137 &remaining_input); 137 &remaining_input);
138 return remaining_input; 138 return remaining_input;
139 } 139 }
140 140
141 // static 141 // static
142 const TemplateURL* KeywordProvider::GetSubstitutingTemplateURLForInput( 142 const TemplateURL* KeywordProvider::GetSubstitutingTemplateURLForInput(
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
633 } 633 }
634 634
635 void KeywordProvider::MaybeEndExtensionKeywordMode() { 635 void KeywordProvider::MaybeEndExtensionKeywordMode() {
636 if (!current_keyword_extension_id_.empty()) { 636 if (!current_keyword_extension_id_.empty()) {
637 extensions::ExtensionOmniboxEventRouter::OnInputCancelled( 637 extensions::ExtensionOmniboxEventRouter::OnInputCancelled(
638 profile_, current_keyword_extension_id_); 638 profile_, current_keyword_extension_id_);
639 639
640 current_keyword_extension_id_.clear(); 640 current_keyword_extension_id_.clear();
641 } 641 }
642 } 642 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698