OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_VIEWS_ASH_APP_LIST_SEARCH_BUILDER_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_ASH_APP_LIST_SEARCH_BUILDER_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_ASH_APP_LIST_SEARCH_BUILDER_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_ASH_APP_LIST_SEARCH_BUILDER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 scoped_ptr<AutocompleteController> controller_; | 52 scoped_ptr<AutocompleteController> controller_; |
53 | 53 |
54 // ExtensionAppProvider used for apps only mode. If apps only mode becomes the | 54 // ExtensionAppProvider used for apps only mode. If apps only mode becomes the |
55 // only mode, remove the AutocompleteController above. Otherwise, remove this. | 55 // only mode, remove the AutocompleteController above. Otherwise, remove this. |
56 scoped_refptr<ExtensionAppProvider> apps_provider_; | 56 scoped_refptr<ExtensionAppProvider> apps_provider_; |
57 | 57 |
58 DISALLOW_COPY_AND_ASSIGN(SearchBuilder); | 58 DISALLOW_COPY_AND_ASSIGN(SearchBuilder); |
59 }; | 59 }; |
60 | 60 |
61 #endif // CHROME_BROWSER_UI_VIEWS_ASH_APP_LIST_SEARCH_BUILDER_H_ | 61 #endif // CHROME_BROWSER_UI_VIEWS_ASH_APP_LIST_SEARCH_BUILDER_H_ |
OLD | NEW |