| OLD | NEW |
| 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/screenshot_delegate.h" | 9 #include "ash/screenshot_delegate.h" |
| 10 #include "ash/shell.h" | 10 #include "ash/shell.h" |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 | 44 |
| 45 void TestShellDelegate::Exit() { | 45 void TestShellDelegate::Exit() { |
| 46 } | 46 } |
| 47 | 47 |
| 48 void TestShellDelegate::NewTab() { | 48 void TestShellDelegate::NewTab() { |
| 49 } | 49 } |
| 50 | 50 |
| 51 void TestShellDelegate::NewWindow(bool incognito) { | 51 void TestShellDelegate::NewWindow(bool incognito) { |
| 52 } | 52 } |
| 53 | 53 |
| 54 void TestShellDelegate::Search() { | |
| 55 } | |
| 56 | |
| 57 void TestShellDelegate::OpenFileManager() { | 54 void TestShellDelegate::OpenFileManager() { |
| 58 } | 55 } |
| 59 | 56 |
| 60 void TestShellDelegate::OpenCrosh() { | 57 void TestShellDelegate::OpenCrosh() { |
| 61 } | 58 } |
| 62 | 59 |
| 63 void TestShellDelegate::OpenMobileSetup(const std::string& service_path) { | 60 void TestShellDelegate::OpenMobileSetup(const std::string& service_path) { |
| 64 } | 61 } |
| 65 | 62 |
| 66 void TestShellDelegate::RestoreTab() { | 63 void TestShellDelegate::RestoreTab() { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 UserWallpaperDelegate* TestShellDelegate::CreateUserWallpaperDelegate() { | 99 UserWallpaperDelegate* TestShellDelegate::CreateUserWallpaperDelegate() { |
| 103 return NULL; | 100 return NULL; |
| 104 } | 101 } |
| 105 | 102 |
| 106 aura::client::UserActionClient* TestShellDelegate::CreateUserActionClient() { | 103 aura::client::UserActionClient* TestShellDelegate::CreateUserActionClient() { |
| 107 return NULL; | 104 return NULL; |
| 108 } | 105 } |
| 109 | 106 |
| 110 } // namespace test | 107 } // namespace test |
| 111 } // namespace ash | 108 } // namespace ash |
| OLD | NEW |