| Index: chrome/browser/autocomplete/autocomplete_edit.h
|
| diff --git a/chrome/browser/autocomplete/autocomplete_edit.h b/chrome/browser/autocomplete/autocomplete_edit.h
|
| index ff92b70950ab6af7526279238c07b2804e1a0aac..51a88bab541783f601999512e3ffbbd172db2469 100644
|
| --- a/chrome/browser/autocomplete/autocomplete_edit.h
|
| +++ b/chrome/browser/autocomplete/autocomplete_edit.h
|
| @@ -338,6 +338,10 @@ class AutocompleteEditModel : public AutocompleteControllerDelegate {
|
| }
|
| #endif
|
|
|
| + // Checks if a given character is a valid space character for accepting
|
| + // keyword.
|
| + static bool IsSpaceCharForAcceptingKeyword(wchar_t c);
|
| +
|
| private:
|
| enum PasteState {
|
| NONE, // Most recent edit was not a paste.
|
| @@ -432,10 +436,6 @@ class AutocompleteEditModel : public AutocompleteControllerDelegate {
|
| // Starts a DNS prefetch for the given |match|.
|
| void DoPreconnect(const AutocompleteMatch& match);
|
|
|
| - // Checks if a given character is a valid space character for accepting
|
| - // keyword.
|
| - static bool IsSpaceCharForAcceptingKeyword(wchar_t c);
|
| -
|
| scoped_ptr<AutocompleteController> autocomplete_controller_;
|
|
|
| OmniboxView* view_;
|
|
|