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

Side by Side Diff: ui/app_list/test/app_list_test_view_delegate.cc

Issue 352033002: Added --custom-launcher-page. Adds a page to the experimental launcher. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix ash_shell build. Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/app_list/test/app_list_test_view_delegate.h ('k') | ui/app_list/views/contents_view.cc » ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "ui/app_list/test/app_list_test_view_delegate.h" 5 #include "ui/app_list/test/app_list_test_view_delegate.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/callback.h" 9 #include "base/callback.h"
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 89
90 gfx::ImageSkia AppListTestViewDelegate::GetWindowIcon() { 90 gfx::ImageSkia AppListTestViewDelegate::GetWindowIcon() {
91 return gfx::ImageSkia(); 91 return gfx::ImageSkia();
92 } 92 }
93 93
94 #if defined(TOOLKIT_VIEWS) 94 #if defined(TOOLKIT_VIEWS)
95 views::View* AppListTestViewDelegate::CreateStartPageWebView( 95 views::View* AppListTestViewDelegate::CreateStartPageWebView(
96 const gfx::Size& size) { 96 const gfx::Size& size) {
97 return NULL; 97 return NULL;
98 } 98 }
99 views::View* AppListTestViewDelegate::CreateCustomPageWebView(
100 const gfx::Size& size) {
101 return NULL;
102 }
99 #endif 103 #endif
100 104
101 bool AppListTestViewDelegate::IsSpeechRecognitionEnabled() { 105 bool AppListTestViewDelegate::IsSpeechRecognitionEnabled() {
102 return false; 106 return false;
103 } 107 }
104 108
105 const AppListViewDelegate::Users& AppListTestViewDelegate::GetUsers() const { 109 const AppListViewDelegate::Users& AppListTestViewDelegate::GetUsers() const {
106 return users_; 110 return users_;
107 } 111 }
108 112
(...skipping 11 matching lines...) Expand all
120 observers_.AddObserver(observer); 124 observers_.AddObserver(observer);
121 } 125 }
122 126
123 void AppListTestViewDelegate::RemoveObserver( 127 void AppListTestViewDelegate::RemoveObserver(
124 AppListViewDelegateObserver* observer) { 128 AppListViewDelegateObserver* observer) {
125 observers_.RemoveObserver(observer); 129 observers_.RemoveObserver(observer);
126 } 130 }
127 131
128 } // namespace test 132 } // namespace test
129 } // namespace app_list 133 } // namespace app_list
OLDNEW
« no previous file with comments | « ui/app_list/test/app_list_test_view_delegate.h ('k') | ui/app_list/views/contents_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698