| 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 UI_APP_LIST_COCOA_APP_LIST_VIEW_CONTROLLER_H_ | 5 #ifndef UI_APP_LIST_COCOA_APP_LIST_VIEW_CONTROLLER_H_ |
| 6 #define UI_APP_LIST_COCOA_APP_LIST_VIEW_CONTROLLER_H_ | 6 #define UI_APP_LIST_COCOA_APP_LIST_VIEW_CONTROLLER_H_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 | 9 |
| 10 #include "base/mac/scoped_nsobject.h" | 10 #include "base/mac/scoped_nsobject.h" |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 base::scoped_nsobject<NSView> contentsView_; | 46 base::scoped_nsobject<NSView> contentsView_; |
| 47 | 47 |
| 48 scoped_ptr<app_list::AppListViewDelegate> delegate_; | 48 scoped_ptr<app_list::AppListViewDelegate> delegate_; |
| 49 scoped_ptr<app_list::AppListModelObserverBridge> | 49 scoped_ptr<app_list::AppListModelObserverBridge> |
| 50 app_list_model_observer_bridge_; | 50 app_list_model_observer_bridge_; |
| 51 BOOL showingSearchResults_; | 51 BOOL showingSearchResults_; |
| 52 } | 52 } |
| 53 | 53 |
| 54 - (app_list::AppListViewDelegate*)delegate; | 54 - (app_list::AppListViewDelegate*)delegate; |
| 55 - (void)setDelegate:(scoped_ptr<app_list::AppListViewDelegate>)newDelegate; | 55 - (void)setDelegate:(scoped_ptr<app_list::AppListViewDelegate>)newDelegate; |
| 56 - (AppsSearchBoxController*)appsSearchBoxController; |
| 56 - (void)onSigninStatusChanged; | 57 - (void)onSigninStatusChanged; |
| 57 | 58 |
| 58 @end | 59 @end |
| 59 | 60 |
| 60 @interface AppListViewController (TestingAPI) | 61 @interface AppListViewController (TestingAPI) |
| 61 | 62 |
| 62 - (AppsGridController*)appsGridController; | 63 - (AppsGridController*)appsGridController; |
| 63 - (NSSegmentedControl*)pagerControl; | 64 - (NSSegmentedControl*)pagerControl; |
| 64 - (NSView*)backgroundView; | 65 - (NSView*)backgroundView; |
| 65 | 66 |
| 66 @end | 67 @end |
| 67 | 68 |
| 68 #endif // UI_APP_LIST_COCOA_APP_LIST_VIEW_CONTROLLER_H_ | 69 #endif // UI_APP_LIST_COCOA_APP_LIST_VIEW_CONTROLLER_H_ |
| OLD | NEW |