summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autocomplete/autocomplete_edit.h
diff options
context:
space:
mode:
authordeanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-20 11:05:12 +0000
committerdeanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-20 11:05:12 +0000
commita10c64530127a1e735b8e7a0d4eb8351e3ef65d2 (patch)
tree1b66e08d82403b004cbf072d86ea1c10259df302 /chrome/browser/autocomplete/autocomplete_edit.h
parent404b6442179f959f21e6f61f32c979a754b074c8 (diff)
downloadchromium_src-a10c64530127a1e735b8e7a0d4eb8351e3ef65d2.zip
chromium_src-a10c64530127a1e735b8e7a0d4eb8351e3ef65d2.tar.gz
chromium_src-a10c64530127a1e735b8e7a0d4eb8351e3ef65d2.tar.bz2
Reformat some omnibox enum comments. This helps readability a bit by using more horizontal space.
Review URL: http://codereview.chromium.org/21511 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10089 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autocomplete/autocomplete_edit.h')
-rwxr-xr-x[-rw-r--r--]chrome/browser/autocomplete/autocomplete_edit.h18
1 files changed, 10 insertions, 8 deletions
diff --git a/chrome/browser/autocomplete/autocomplete_edit.h b/chrome/browser/autocomplete/autocomplete_edit.h
index 8bbae11..ffb98c4 100644..100755
--- a/chrome/browser/autocomplete/autocomplete_edit.h
+++ b/chrome/browser/autocomplete/autocomplete_edit.h
@@ -71,14 +71,16 @@ class AutocompleteEditController {
class AutocompleteEditModel {
public:
enum KeywordUIState {
- NORMAL, // The user is typing normally.
- NO_KEYWORD, // The user is editing in the middle of the input string. Even
- // if the input looks like a keyword, don't display the keyword
- // UI, so as not to interfere with the user's editing.
- KEYWORD, // The user has triggered the keyword UI. Until it disappears,
- // bias autocomplete results so that input strings of the
- // keyword alone default to the keyword provider, not a normal
- // navigation or search.
+ // The user is typing normally.
+ NORMAL,
+ // The user is editing in the middle of the input string. Even if the
+ // input looks like a keyword, don't display the keyword UI, as to not
+ // interfere with the user's editing.
+ NO_KEYWORD,
+ // The user has triggered the keyword UI. Until it disappears, bias
+ // autocomplete results so that input strings of the keyword alone default
+ // to the keyword provider, not a normal navigation or search.
+ KEYWORD,
};
struct State {