diff options
author | suzhe@google.com <suzhe@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-13 00:30:18 +0000 |
---|---|---|
committer | suzhe@google.com <suzhe@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-13 00:30:18 +0000 |
commit | 28ea1c9ba0131ea88ae51c8487477e31c11ad8c6 (patch) | |
tree | 0f2ba7a91f49fb5f0169655e13409d66159a20f0 /chrome/browser/autocomplete/keyword_provider.cc | |
parent | 883025fbdea24cd612344a6953b9ddac49dcc0eb (diff) | |
download | chromium_src-28ea1c9ba0131ea88ae51c8487477e31c11ad8c6.zip chromium_src-28ea1c9ba0131ea88ae51c8487477e31c11ad8c6.tar.gz chromium_src-28ea1c9ba0131ea88ae51c8487477e31c11ad8c6.tar.bz2 |
Fix several omnibox issues related to keyword mode and IME support.
This CL contains following changes to omnibox code:
1. Make sure |keyword_ui_state_| is always updated correctly, i.e. it
should always be KEYWORD when keyword UI is visible.
2. Make sure |keyword_ui_state_| will never be changed during IME
composition.
3. Make sure OnInlineAutocompleteTextMaybeChanged() will only be called
when inline autocomplete suggest is changed.
This CL fixes following bugs. Old fix for bug 2720 and 3798 has been
removed.
BUG=2720
BUG=3798
BUG=39947
BUG=62426
TEST=See bug reports.
Review URL: http://codereview.chromium.org/6131005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71268 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autocomplete/keyword_provider.cc')
-rw-r--r-- | chrome/browser/autocomplete/keyword_provider.cc | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/chrome/browser/autocomplete/keyword_provider.cc b/chrome/browser/autocomplete/keyword_provider.cc index 71a8f40..a1be35a 100644 --- a/chrome/browser/autocomplete/keyword_provider.cc +++ b/chrome/browser/autocomplete/keyword_provider.cc @@ -42,14 +42,16 @@ class KeywordProvider::ScopedEndExtensionKeywordMode { // static std::wstring KeywordProvider::SplitReplacementStringFromInput( - const std::wstring& input) { + const std::wstring& input, + bool trim_leading_whitespace) { // The input may contain leading whitespace, strip it. std::wstring trimmed_input; TrimWhitespace(input, TRIM_LEADING, &trimmed_input); // And extract the replacement string. std::wstring remaining_input; - SplitKeywordFromInput(trimmed_input, &remaining_input); + SplitKeywordFromInput(trimmed_input, trim_leading_whitespace, + &remaining_input); return remaining_input; } @@ -275,13 +277,14 @@ bool KeywordProvider::ExtractKeywordFromInput(const AutocompleteInput& input, return false; *keyword = TemplateURLModel::CleanUserInputKeyword( - SplitKeywordFromInput(input.text(), remaining_input)); + SplitKeywordFromInput(input.text(), true, remaining_input)); return !keyword->empty(); } // static std::wstring KeywordProvider::SplitKeywordFromInput( const std::wstring& input, + bool trim_leading_whitespace, std::wstring* remaining_input) { // Find end of first token. The AutocompleteController has trimmed leading // whitespace, so we need not skip over that. @@ -292,10 +295,11 @@ std::wstring KeywordProvider::SplitKeywordFromInput( // Set |remaining_input| to everything after the first token. DCHECK(remaining_input != NULL); - const size_t first_nonwhite(input.find_first_not_of(kWhitespaceWide, - first_white)); - if (first_nonwhite != std::wstring::npos) - remaining_input->assign(input.begin() + first_nonwhite, input.end()); + const size_t remaining_start = trim_leading_whitespace ? + input.find_first_not_of(kWhitespaceWide, first_white) : first_white + 1; + + if (remaining_start < input.length()) + remaining_input->assign(input.begin() + remaining_start, input.end()); // Return first token as keyword. return input.substr(0, first_white); |