| Index: ui/app_list/test/app_list_test_view_delegate.cc
|
| diff --git a/ui/app_list/test/app_list_test_view_delegate.cc b/ui/app_list/test/app_list_test_view_delegate.cc
|
| deleted file mode 100644
|
| index 99b2cd2bb050290efb98369f8912d5d29c06797a..0000000000000000000000000000000000000000
|
| --- a/ui/app_list/test/app_list_test_view_delegate.cc
|
| +++ /dev/null
|
| @@ -1,133 +0,0 @@
|
| -// Copyright 2013 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#include "ui/app_list/test/app_list_test_view_delegate.h"
|
| -
|
| -#include <string>
|
| -#include <vector>
|
| -
|
| -#include "base/callback.h"
|
| -#include "base/files/file_path.h"
|
| -#include "ui/app_list/app_list_model.h"
|
| -#include "ui/app_list/app_list_switches.h"
|
| -#include "ui/app_list/app_list_view_delegate_observer.h"
|
| -#include "ui/app_list/test/app_list_test_model.h"
|
| -#include "ui/gfx/image/image_skia.h"
|
| -
|
| -namespace app_list {
|
| -namespace test {
|
| -
|
| -AppListTestViewDelegate::AppListTestViewDelegate()
|
| - : dismiss_count_(0),
|
| - toggle_speech_recognition_count_(0),
|
| - open_search_result_count_(0),
|
| - next_profile_app_count_(0),
|
| - model_(new AppListTestModel) {
|
| - model_->SetFoldersEnabled(true);
|
| -}
|
| -
|
| -AppListTestViewDelegate::~AppListTestViewDelegate() {}
|
| -
|
| -int AppListTestViewDelegate::GetToggleSpeechRecognitionCountAndReset() {
|
| - int count = toggle_speech_recognition_count_;
|
| - toggle_speech_recognition_count_ = 0;
|
| - return count;
|
| -}
|
| -
|
| -bool AppListTestViewDelegate::ForceNativeDesktop() const {
|
| - return false;
|
| -}
|
| -
|
| -void AppListTestViewDelegate::SetProfileByPath(
|
| - const base::FilePath& profile_path) {
|
| - ReplaceTestModel(next_profile_app_count_);
|
| -}
|
| -
|
| -AppListModel* AppListTestViewDelegate::GetModel() {
|
| - return model_.get();
|
| -}
|
| -
|
| -SpeechUIModel* AppListTestViewDelegate::GetSpeechUI() {
|
| - return &speech_ui_;
|
| -}
|
| -
|
| -void AppListTestViewDelegate::GetShortcutPathForApp(
|
| - const std::string& app_id,
|
| - const base::Callback<void(const base::FilePath&)>& callback) {
|
| - callback.Run(base::FilePath());
|
| -}
|
| -
|
| -void AppListTestViewDelegate::OpenSearchResult(SearchResult* result,
|
| - bool auto_launch,
|
| - int event_flags) {
|
| - const AppListModel::SearchResults* results = model_->results();
|
| - for (size_t i = 0; i < results->item_count(); ++i) {
|
| - if (results->GetItemAt(i) == result) {
|
| - open_search_result_counts_[i]++;
|
| - break;
|
| - }
|
| - }
|
| - ++open_search_result_count_;
|
| -}
|
| -
|
| -base::TimeDelta AppListTestViewDelegate::GetAutoLaunchTimeout() {
|
| - return auto_launch_timeout_;
|
| -}
|
| -
|
| -void AppListTestViewDelegate::AutoLaunchCanceled() {
|
| - auto_launch_timeout_ = base::TimeDelta();
|
| -}
|
| -
|
| -void AppListTestViewDelegate::Dismiss() {
|
| - ++dismiss_count_;
|
| -}
|
| -
|
| -void AppListTestViewDelegate::ToggleSpeechRecognition() {
|
| - ++toggle_speech_recognition_count_;
|
| -}
|
| -
|
| -gfx::ImageSkia AppListTestViewDelegate::GetWindowIcon() {
|
| - return gfx::ImageSkia();
|
| -}
|
| -
|
| -#if defined(TOOLKIT_VIEWS)
|
| -views::View* AppListTestViewDelegate::CreateStartPageWebView(
|
| - const gfx::Size& size) {
|
| - return NULL;
|
| -}
|
| -std::vector<views::View*> AppListTestViewDelegate::CreateCustomPageWebViews(
|
| - const gfx::Size& size) {
|
| - return std::vector<views::View*>();
|
| -}
|
| -#endif
|
| -
|
| -bool AppListTestViewDelegate::IsSpeechRecognitionEnabled() {
|
| - return false;
|
| -}
|
| -
|
| -const AppListViewDelegate::Users& AppListTestViewDelegate::GetUsers() const {
|
| - return users_;
|
| -}
|
| -
|
| -bool AppListTestViewDelegate::ShouldCenterWindow() const {
|
| - return app_list::switches::IsCenteredAppListEnabled();
|
| -}
|
| -
|
| -void AppListTestViewDelegate::ReplaceTestModel(int item_count) {
|
| - model_.reset(new AppListTestModel);
|
| - model_->PopulateApps(item_count);
|
| -}
|
| -
|
| -void AppListTestViewDelegate::AddObserver(
|
| - AppListViewDelegateObserver* observer) {
|
| - observers_.AddObserver(observer);
|
| -}
|
| -
|
| -void AppListTestViewDelegate::RemoveObserver(
|
| - AppListViewDelegateObserver* observer) {
|
| - observers_.RemoveObserver(observer);
|
| -}
|
| -
|
| -} // namespace test
|
| -} // namespace app_list
|
|
|