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

Side by Side Diff: ash/shell/app_list.cc

Issue 683703002: Notify launcher page with onTransitionChanged event (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@launcher_page_api_show_state_notify
Patch Set: fix mac compile Created 6 years, 1 month 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
« no previous file with comments | « no previous file | athena/home/app_list_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 #include <string> 5 #include <string>
6 #include <vector> 6 #include <vector>
7 7
8 #include "ash/session/session_state_delegate.h" 8 #include "ash/session/session_state_delegate.h"
9 #include "ash/shell.h" 9 #include "ash/shell.h"
10 #include "ash/shell/example_factory.h" 10 #include "ash/shell/example_factory.h"
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 342
343 views::View* CreateStartPageWebView(const gfx::Size& size) override { 343 views::View* CreateStartPageWebView(const gfx::Size& size) override {
344 return NULL; 344 return NULL;
345 } 345 }
346 346
347 std::vector<views::View*> CreateCustomPageWebViews( 347 std::vector<views::View*> CreateCustomPageWebViews(
348 const gfx::Size& size) override { 348 const gfx::Size& size) override {
349 return std::vector<views::View*>(); 349 return std::vector<views::View*>();
350 } 350 }
351 351
352 void CustomLauncherPageAnimationChanged(double progress) override {}
353
352 bool IsSpeechRecognitionEnabled() override { return false; } 354 bool IsSpeechRecognitionEnabled() override { return false; }
353 355
354 scoped_ptr<app_list::AppListModel> model_; 356 scoped_ptr<app_list::AppListModel> model_;
355 app_list::SpeechUIModel speech_ui_; 357 app_list::SpeechUIModel speech_ui_;
356 Users users_; 358 Users users_;
357 359
358 DISALLOW_COPY_AND_ASSIGN(ExampleAppListViewDelegate); 360 DISALLOW_COPY_AND_ASSIGN(ExampleAppListViewDelegate);
359 }; 361 };
360 362
361 } // namespace 363 } // namespace
362 364
363 app_list::AppListViewDelegate* CreateAppListViewDelegate() { 365 app_list::AppListViewDelegate* CreateAppListViewDelegate() {
364 return new ExampleAppListViewDelegate; 366 return new ExampleAppListViewDelegate;
365 } 367 }
366 368
367 } // namespace shell 369 } // namespace shell
368 } // namespace ash 370 } // namespace ash
OLDNEW
« no previous file with comments | « no previous file | athena/home/app_list_view_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698