| 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() {
|
|
|