Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(408)

Side by Side Diff: chrome/browser/ui/app_list/search/app_search_provider.h

Issue 800023004: app_list: OnExtensionLoaded calls UpdateResults asynchronously rather than directly. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix test Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef CHROME_BROWSER_UI_APP_LIST_SEARCH_APP_SEARCH_PROVIDER_H_ 5 #ifndef CHROME_BROWSER_UI_APP_LIST_SEARCH_APP_SEARCH_PROVIDER_H_
6 #define CHROME_BROWSER_UI_APP_LIST_SEARCH_APP_SEARCH_PROVIDER_H_ 6 #define CHROME_BROWSER_UI_APP_LIST_SEARCH_APP_SEARCH_PROVIDER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/scoped_vector.h" 9 #include "base/memory/scoped_vector.h"
10 #include "base/memory/weak_ptr.h"
10 #include "base/scoped_observer.h" 11 #include "base/scoped_observer.h"
11 #include "extensions/browser/extension_registry_observer.h" 12 #include "extensions/browser/extension_registry_observer.h"
12 #include "ui/app_list/search_provider.h" 13 #include "ui/app_list/search_provider.h"
13 14
14 class AppListControllerDelegate; 15 class AppListControllerDelegate;
15 class Profile; 16 class Profile;
16 17
17 namespace base { 18 namespace base {
18 class Clock; 19 class Clock;
19 } 20 }
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 64
64 base::string16 query_; 65 base::string16 query_;
65 66
66 ScopedObserver<extensions::ExtensionRegistry, 67 ScopedObserver<extensions::ExtensionRegistry,
67 extensions::ExtensionRegistryObserver> 68 extensions::ExtensionRegistryObserver>
68 extension_registry_observer_; 69 extension_registry_observer_;
69 70
70 Apps apps_; 71 Apps apps_;
71 72
72 scoped_ptr<base::Clock> clock_; 73 scoped_ptr<base::Clock> clock_;
74 base::WeakPtrFactory<AppSearchProvider> update_results_factory_;
73 75
74 DISALLOW_COPY_AND_ASSIGN(AppSearchProvider); 76 DISALLOW_COPY_AND_ASSIGN(AppSearchProvider);
75 }; 77 };
76 78
77 } // namespace app_list 79 } // namespace app_list
78 80
79 #endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_APP_SEARCH_PROVIDER_H_ 81 #endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_APP_SEARCH_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698