From d29ce06a1354e06e41596cf575af98aed9f6b8a7 Mon Sep 17 00:00:00 2001 From: Jun Mukai Date: Fri, 3 Oct 2014 18:25:57 -0700 Subject: Simplifies the structure of app_list search a bit. This is the first CL to simplify app list search. The final goal is making SearchResult copyable and remove SearchResultObserver but it would need the several steps. As the first step, it simply keeps the copying method Duplicate but removes the unnecessary class hierarchy of ChromeSearchResult. BUG=415500 R=oshima@chromium.org, tapted@chromium.org, xiyuan@chromium.org TEST=build passes, no functional changes Review URL: https://codereview.chromium.org/621823004 Cr-Commit-Position: refs/heads/master@{#298154} --- ui/app_list/search_provider.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'ui/app_list/search_provider.h') diff --git a/ui/app_list/search_provider.h b/ui/app_list/search_provider.h index f8ebfd0..d092c7e 100644 --- a/ui/app_list/search_provider.h +++ b/ui/app_list/search_provider.h @@ -34,9 +34,6 @@ class APP_LIST_EXPORT SearchProvider { result_changed_callback_ = callback; } - // TODO(mukai): Fix the ownership and copying of the results. - void ReleaseResult(std::vector* results); - const Results& results() const { return results_; } protected: -- cgit v1.1