Index: chrome/common/extensions/api/launcher_search_provider.idl |
diff --git a/chrome/common/extensions/api/launcher_search_provider.idl b/chrome/common/extensions/api/launcher_search_provider.idl |
index ff519f1852c53635f3ae5100e0b5467498459411..5f59f72900eb149004b061f731c1c4e8f592a4a6 100644 |
--- a/chrome/common/extensions/api/launcher_search_provider.idl |
+++ b/chrome/common/extensions/api/launcher_search_provider.idl |
@@ -24,19 +24,19 @@ namespace launcherSearchProvider { |
// guranteed that all provided results are shown to a user. The search |
// results will be sorted by relevance, with ties broken by the order of the |
// results in this list (highest priority first). |
- static void setSearchResults(DOMString queryId, SearchResult[] results); |
+ static void setSearchResults(long queryId, SearchResult[] results); |
}; |
interface Events { |
// Called when a user typed a query. maxResult is the maximum number of |
// results the extension should provide. |
- static void onQueryStarted(DOMString queryId, |
+ static void onQueryStarted(long queryId, |
DOMString query, |
long maxResult); |
// Called when query of |queryId| is ended. After this call, |
// setSearchResults no longer accept the results for queryId. |
- static void onQueryEnded(DOMString queryId); |
+ static void onQueryEnded(long queryId); |
// Called when a user clicks a search result which is provided by |
// setSearchResults. |