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

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

Issue 2168143002: Adding keyboard shortcut BROWSE+SHIFT+N to launch 'Connectivity diag.' extension. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changed key combo to browse shift N to avoid accidents. Created 4 years, 4 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
« no previous file with comments | « ash/new_window_delegate.h ('k') | ash/test/test_shell_delegate.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/shell/shell_delegate_impl.h" 5 #include "ash/shell/shell_delegate_impl.h"
6 6
7 #include "ash/app_list/app_list_presenter_delegate_factory.h" 7 #include "ash/app_list/app_list_presenter_delegate_factory.h"
8 #include "ash/common/accessibility_delegate.h" 8 #include "ash/common/accessibility_delegate.h"
9 #include "ash/common/default_accessibility_delegate.h" 9 #include "ash/common/default_accessibility_delegate.h"
10 #include "ash/common/gpu_support_stub.h" 10 #include "ash/common/gpu_support_stub.h"
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 create_params.can_maximize = true; 50 create_params.can_maximize = true;
51 ash::shell::ToplevelWindow::CreateToplevelWindow(create_params); 51 ash::shell::ToplevelWindow::CreateToplevelWindow(create_params);
52 } 52 }
53 void OpenFileManager() override {} 53 void OpenFileManager() override {}
54 void OpenCrosh() override {} 54 void OpenCrosh() override {}
55 void OpenGetHelp() override {} 55 void OpenGetHelp() override {}
56 void RestoreTab() override {} 56 void RestoreTab() override {}
57 void ShowKeyboardOverlay() override {} 57 void ShowKeyboardOverlay() override {}
58 void ShowTaskManager() override {} 58 void ShowTaskManager() override {}
59 void OpenFeedbackPage() override {} 59 void OpenFeedbackPage() override {}
60 void OpenNetworkDiag() override {}
60 61
61 private: 62 private:
62 DISALLOW_COPY_AND_ASSIGN(NewWindowDelegateImpl); 63 DISALLOW_COPY_AND_ASSIGN(NewWindowDelegateImpl);
63 }; 64 };
64 65
65 class MediaDelegateImpl : public MediaDelegate { 66 class MediaDelegateImpl : public MediaDelegate {
66 public: 67 public:
67 MediaDelegateImpl() {} 68 MediaDelegateImpl() {}
68 ~MediaDelegateImpl() override {} 69 ~MediaDelegateImpl() override {}
69 70
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 base::string16 ShellDelegateImpl::GetProductName() const { 262 base::string16 ShellDelegateImpl::GetProductName() const {
262 return base::string16(); 263 return base::string16();
263 } 264 }
264 265
265 gfx::Image ShellDelegateImpl::GetDeprecatedAcceleratorImage() const { 266 gfx::Image ShellDelegateImpl::GetDeprecatedAcceleratorImage() const {
266 return gfx::Image(); 267 return gfx::Image();
267 } 268 }
268 269
269 } // namespace shell 270 } // namespace shell
270 } // namespace ash 271 } // namespace ash
OLDNEW
« no previous file with comments | « ash/new_window_delegate.h ('k') | ash/test/test_shell_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698