| OLD | NEW |
| 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_WEBSTORE_RESULT_H_ | 5 #ifndef CHROME_BROWSER_UI_APP_LIST_SEARCH_WEBSTORE_WEBSTORE_RESULT_H_ |
| 6 #define CHROME_BROWSER_UI_APP_LIST_SEARCH_WEBSTORE_RESULT_H_ | 6 #define CHROME_BROWSER_UI_APP_LIST_SEARCH_WEBSTORE_WEBSTORE_RESULT_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "chrome/browser/extensions/install_observer.h" | 12 #include "chrome/browser/extensions/install_observer.h" |
| 13 #include "chrome/browser/ui/app_list/search/chrome_search_result.h" | 13 #include "chrome/browser/ui/app_list/search/chrome_search_result.h" |
| 14 #include "url/gurl.h" | 14 #include "url/gurl.h" |
| 15 | 15 |
| 16 class AppListControllerDelegate; | 16 class AppListControllerDelegate; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 base::WeakPtrFactory<WebstoreResult> weak_factory_; | 80 base::WeakPtrFactory<WebstoreResult> weak_factory_; |
| 81 | 81 |
| 82 AppListControllerDelegate* controller_; | 82 AppListControllerDelegate* controller_; |
| 83 extensions::InstallTracker* install_tracker_; // Not owned. | 83 extensions::InstallTracker* install_tracker_; // Not owned. |
| 84 | 84 |
| 85 DISALLOW_COPY_AND_ASSIGN(WebstoreResult); | 85 DISALLOW_COPY_AND_ASSIGN(WebstoreResult); |
| 86 }; | 86 }; |
| 87 | 87 |
| 88 } // namespace app_list | 88 } // namespace app_list |
| 89 | 89 |
| 90 #endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_WEBSTORE_RESULT_H_ | 90 #endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_WEBSTORE_WEBSTORE_RESULT_H_ |
| OLD | NEW |