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

Unified Diff: ui/app_list/app_list_view_delegate.h

Issue 441873004: App list: Infrastructure now supports multiple custom launcher pages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: ui/app_list/app_list_view_delegate.h
diff --git a/ui/app_list/app_list_view_delegate.h b/ui/app_list/app_list_view_delegate.h
index 606e218251bf81036f1d5a0e0c78bd6aad54b235..90a608ed072034f84bcb4c149f0026e01c44877d 100644
--- a/ui/app_list/app_list_view_delegate.h
+++ b/ui/app_list/app_list_view_delegate.h
@@ -140,9 +140,10 @@ class APP_LIST_EXPORT AppListViewDelegate {
// the returned view.
virtual views::View* CreateStartPageWebView(const gfx::Size& size) = 0;
- // Creates the web view for the user-specified custom page. May return NULL.
- // The caller takes ownership of the returned view.
- virtual views::View* CreateCustomPageWebView(const gfx::Size& size) = 0;
+ // Creates the web views for the user-specified custom pages. The caller takes
+ // ownership of the returned views.
+ virtual std::vector<views::View*> CreateCustomPageWebViews(
+ const gfx::Size& size) = 0;
#endif
// Returns true if the delegate supports speech recognition.

Powered by Google App Engine
This is Rietveld 408576698