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

Unified Diff: athena/home/app_list_view_delegate.cc

Issue 441873004: App list: Infrastructure now supports multiple custom launcher pages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix typo. 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
« no previous file with comments | « athena/home/app_list_view_delegate.h ('k') | chrome/browser/ui/app_list/app_list_view_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/home/app_list_view_delegate.cc
diff --git a/athena/home/app_list_view_delegate.cc b/athena/home/app_list_view_delegate.cc
index 51800223b06a703b7689632c6cc9a2f1bf377fd7..c86736461bcb12e71ea82af654ea3c1c03bd3695 100644
--- a/athena/home/app_list_view_delegate.cc
+++ b/athena/home/app_list_view_delegate.cc
@@ -5,6 +5,7 @@
#include "athena/home/app_list_view_delegate.h"
#include <string>
+#include <vector>
#include "athena/home/public/app_model_builder.h"
#include "base/basictypes.h"
@@ -184,9 +185,9 @@ views::View* AppListViewDelegate::CreateStartPageWebView(
return new DummyLogoView(size);
}
-views::View* AppListViewDelegate::CreateCustomPageWebView(
+std::vector<views::View*> AppListViewDelegate::CreateCustomPageWebViews(
const gfx::Size& size) {
- return NULL;
+ return std::vector<views::View*>();
}
bool AppListViewDelegate::IsSpeechRecognitionEnabled() {
« no previous file with comments | « athena/home/app_list_view_delegate.h ('k') | chrome/browser/ui/app_list/app_list_view_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698