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

Side by Side Diff: ui/app_list/app_list_view_delegate.h

Issue 352033002: Added --custom-launcher-page. Adds a page to the experimental launcher. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix ash_shell build. Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | ui/app_list/test/app_list_test_view_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ 5 #ifndef UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_
6 #define UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ 6 #define UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 // Invoked to toggle the status of speech recognition. 132 // Invoked to toggle the status of speech recognition.
133 virtual void ToggleSpeechRecognition() = 0; 133 virtual void ToggleSpeechRecognition() = 0;
134 134
135 // Shows the app list for the profile specified by |profile_path|. 135 // Shows the app list for the profile specified by |profile_path|.
136 virtual void ShowForProfileByPath(const base::FilePath& profile_path) = 0; 136 virtual void ShowForProfileByPath(const base::FilePath& profile_path) = 0;
137 137
138 #if defined(TOOLKIT_VIEWS) 138 #if defined(TOOLKIT_VIEWS)
139 // Creates the web view for the start page. The caller takes the ownership of 139 // Creates the web view for the start page. The caller takes the ownership of
140 // the returned view. 140 // the returned view.
141 virtual views::View* CreateStartPageWebView(const gfx::Size& size) = 0; 141 virtual views::View* CreateStartPageWebView(const gfx::Size& size) = 0;
142
143 // Creates the web view for the user-specified custom page. May return NULL.
144 // The caller takes ownership of the returned view.
145 virtual views::View* CreateCustomPageWebView(const gfx::Size& size) = 0;
142 #endif 146 #endif
143 147
144 // Returns true if the delegate supports speech recognition. 148 // Returns true if the delegate supports speech recognition.
145 virtual bool IsSpeechRecognitionEnabled() = 0; 149 virtual bool IsSpeechRecognitionEnabled() = 0;
146 150
147 // Returns the list of users (for AppListMenu). 151 // Returns the list of users (for AppListMenu).
148 virtual const Users& GetUsers() const = 0; 152 virtual const Users& GetUsers() const = 0;
149 153
150 // Returns true if the app list should be centered and in landscape mode. 154 // Returns true if the app list should be centered and in landscape mode.
151 virtual bool ShouldCenterWindow() const = 0; 155 virtual bool ShouldCenterWindow() const = 0;
152 156
153 // Adds/removes an observer for profile changes. 157 // Adds/removes an observer for profile changes.
154 virtual void AddObserver(AppListViewDelegateObserver* observer) {} 158 virtual void AddObserver(AppListViewDelegateObserver* observer) {}
155 virtual void RemoveObserver(AppListViewDelegateObserver* observer) {} 159 virtual void RemoveObserver(AppListViewDelegateObserver* observer) {}
156 }; 160 };
157 161
158 } // namespace app_list 162 } // namespace app_list
159 163
160 #endif // UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ 164 #endif // UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | ui/app_list/test/app_list_test_view_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698