summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-09 18:21:27 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-09 18:21:27 +0000
commit8deeb95696562494db58140a46fbe06432f39d57 (patch)
treee74fed0de316dd2bc97805b0ba2a942fb8d53aff /chrome/common
parent3b2a95c36e98d35b417466054349d2d5308c2af3 (diff)
downloadchromium_src-8deeb95696562494db58140a46fbe06432f39d57.zip
chromium_src-8deeb95696562494db58140a46fbe06432f39d57.tar.gz
chromium_src-8deeb95696562494db58140a46fbe06432f39d57.tar.bz2
Move |result_| and |latest_result_| to the autocomplete controller.
This purposefully does not change the communication interface between the edit and the popup; that's coming in a subsequent pass. As a result, right now the popup isn't really much simpler. That should eventually change. Review URL: http://codereview.chromium.org/6596 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3113 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/notification_types.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/chrome/common/notification_types.h b/chrome/common/notification_types.h
index 50e3b5b..f6b1ad7 100644
--- a/chrome/common/notification_types.h
+++ b/chrome/common/notification_types.h
@@ -433,6 +433,15 @@ enum NotificationType {
// Autocomplete --------------------------------------------------------------
+ // Sent by the autocomplete controller at least once per query, each time new
+ // matches are available, subject to rate-limiting/coalescing to reduce the
+ // number of updates. There are no details.
+ NOTIFY_AUTOCOMPLETE_CONTROLLER_RESULT_UPDATED,
+
+ // Sent by the autocomplete controller once per query, immediately after
+ // synchronous matches become available. There are no details.
+ NOTIFY_AUTOCOMPLETE_CONTROLLER_SYNCHRONOUS_MATCHES_AVAILABLE,
+
// This is sent when an item of the Omnibox popup is selected. The source is
// the profile.
NOTIFY_OMNIBOX_OPENED_URL,