| Index: ash/shell/app_list.cc
|
| diff --git a/ash/shell/app_list.cc b/ash/shell/app_list.cc
|
| index f8351532d384a5956fc608cf62d1eb18c02fc8d1..1d8eb80eca1d867d7d0bb945a33fd3c204d86a3b 100644
|
| --- a/ash/shell/app_list.cc
|
| +++ b/ash/shell/app_list.cc
|
| @@ -3,6 +3,7 @@
|
| // found in the LICENSE file.
|
|
|
| #include <string>
|
| +#include <vector>
|
|
|
| #include "ash/session/session_state_delegate.h"
|
| #include "ash/shell.h"
|
| @@ -353,8 +354,9 @@ class ExampleAppListViewDelegate : public app_list::AppListViewDelegate {
|
| return NULL;
|
| }
|
|
|
| - virtual views::View* CreateCustomPageWebView(const gfx::Size& size) OVERRIDE {
|
| - return NULL;
|
| + virtual std::vector<views::View*> CreateCustomPageWebViews(
|
| + const gfx::Size& size) OVERRIDE {
|
| + return std::vector<views::View*>();
|
| }
|
|
|
| virtual bool IsSpeechRecognitionEnabled() OVERRIDE {
|
|
|