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

Side by Side Diff: ash/test/test_shell_delegate.cc

Issue 9124021: Adds Ctrl-Shift-Q support inside AppList (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed extraneous import Created 8 years, 11 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 | « ash/test/test_shell_delegate.h ('k') | chrome/browser/ui/views/accelerator_table.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 (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 "ash/test/test_shell_delegate.h" 5 #include "ash/test/test_shell_delegate.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "ash/shell.h" 9 #include "ash/shell.h"
10 #include "ash/shell_window_ids.h" 10 #include "ash/shell_window_ids.h"
11 #include "grit/ui_resources.h" 11 #include "grit/ui_resources.h"
12 #include "ui/aura/window.h" 12 #include "ui/aura/window.h"
13 13
14 namespace ash { 14 namespace ash {
15 namespace test { 15 namespace test {
16 16
17 TestShellDelegate::TestShellDelegate() { 17 TestShellDelegate::TestShellDelegate() {
18 } 18 }
19 19
20 TestShellDelegate::~TestShellDelegate() { 20 TestShellDelegate::~TestShellDelegate() {
21 } 21 }
22 22
23 void TestShellDelegate::CreateNewWindow() { 23 void TestShellDelegate::CreateNewWindow() {
24 } 24 }
25 25
26 views::Widget* TestShellDelegate::CreateStatusArea() { 26 views::Widget* TestShellDelegate::CreateStatusArea() {
27 return NULL; 27 return NULL;
28 } 28 }
29 29
30 void TestShellDelegate::Exit() {
31 }
32
30 void TestShellDelegate::BuildAppListModel(AppListModel* model) { 33 void TestShellDelegate::BuildAppListModel(AppListModel* model) {
31 } 34 }
32 35
33 AppListViewDelegate* TestShellDelegate::CreateAppListViewDelegate() { 36 AppListViewDelegate* TestShellDelegate::CreateAppListViewDelegate() {
34 return NULL; 37 return NULL;
35 } 38 }
36 39
37 std::vector<aura::Window*> TestShellDelegate::GetCycleWindowList( 40 std::vector<aura::Window*> TestShellDelegate::GetCycleWindowList(
38 CycleSource source, 41 CycleSource source,
39 CycleOrder order) const { 42 CycleOrder order) const {
(...skipping 13 matching lines...) Expand all
53 bool TestShellDelegate::ConfigureLauncherItem(LauncherItem* item) { 56 bool TestShellDelegate::ConfigureLauncherItem(LauncherItem* item) {
54 return true; 57 return true;
55 } 58 }
56 59
57 int TestShellDelegate::GetBrowserShortcutResourceId() { 60 int TestShellDelegate::GetBrowserShortcutResourceId() {
58 return IDR_AURA_LAUNCHER_BROWSER_SHORTCUT; 61 return IDR_AURA_LAUNCHER_BROWSER_SHORTCUT;
59 } 62 }
60 63
61 } // namespace test 64 } // namespace test
62 } // namespace ash 65 } // namespace ash
OLDNEW
« no previous file with comments | « ash/test/test_shell_delegate.h ('k') | chrome/browser/ui/views/accelerator_table.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698