| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // An API to listen queries of the Chrome Launcher and provide search results | 5 // An API to listen queries of the Chrome Launcher and provide search results |
| 6 // to it. | 6 // to it. |
| 7 [platforms=("chromeos"), | 7 [platforms=("chromeos"), |
| 8 implemented_in="chrome/browser/chromeos/extensions/launcher_search_provider.h", | 8 implemented_in="chrome/browser/chromeos/extensions/launcher_search_provider.h", |
| 9 nodoc, | 9 nodoc] |
| 10 use_movable_types=true] | |
| 11 namespace launcherSearchProvider { | 10 namespace launcherSearchProvider { |
| 12 dictionary SearchResult { | 11 dictionary SearchResult { |
| 13 DOMString itemId; | 12 DOMString itemId; |
| 14 DOMString title; | 13 DOMString title; |
| 15 // If iconUrl is not provided, app/extension icon is used automatically. | 14 // If iconUrl is not provided, app/extension icon is used automatically. |
| 16 DOMString? iconUrl; | 15 DOMString? iconUrl; |
| 17 // Relevance ranges from 0 to 4. 0 is the lowest relevance, 4 is highest. | 16 // Relevance ranges from 0 to 4. 0 is the lowest relevance, 4 is highest. |
| 18 long relevance; | 17 long relevance; |
| 19 }; | 18 }; |
| 20 | 19 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 37 | 36 |
| 38 // Called when query of |queryId| is ended. After this call, | 37 // Called when query of |queryId| is ended. After this call, |
| 39 // setSearchResults no longer accept the results for queryId. | 38 // setSearchResults no longer accept the results for queryId. |
| 40 static void onQueryEnded(long queryId); | 39 static void onQueryEnded(long queryId); |
| 41 | 40 |
| 42 // Called when a user clicks a search result which is provided by | 41 // Called when a user clicks a search result which is provided by |
| 43 // setSearchResults. | 42 // setSearchResults. |
| 44 static void onOpenResult(DOMString itemId); | 43 static void onOpenResult(DOMString itemId); |
| 45 }; | 44 }; |
| 46 }; | 45 }; |
| OLD | NEW |