| OLD | NEW |
| 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 "chrome/browser/ui/ash/chrome_shell_delegate.h" | 5 #include "chrome/browser/ui/ash/chrome_shell_delegate.h" |
| 6 | 6 |
| 7 #include "ash/magnifier/magnifier_constants.h" | 7 #include "ash/magnifier/magnifier_constants.h" |
| 8 #include "chrome/browser/ui/ash/caps_lock_delegate_views.h" | 8 #include "chrome/browser/ui/ash/caps_lock_delegate_views.h" |
| 9 #include "chrome/browser/ui/ash/window_positioner.h" | 9 #include "chrome/browser/ui/ash/window_positioner.h" |
| 10 | 10 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 return false; | 29 return false; |
| 30 } | 30 } |
| 31 | 31 |
| 32 void ChromeShellDelegate::LockScreen() { | 32 void ChromeShellDelegate::LockScreen() { |
| 33 } | 33 } |
| 34 | 34 |
| 35 bool ChromeShellDelegate::IsScreenLocked() const { | 35 bool ChromeShellDelegate::IsScreenLocked() const { |
| 36 return false; | 36 return false; |
| 37 } | 37 } |
| 38 | 38 |
| 39 void ChromeShellDelegate::OnPreInit() { |
| 40 } |
| 41 |
| 39 void ChromeShellDelegate::Shutdown() { | 42 void ChromeShellDelegate::Shutdown() { |
| 40 } | 43 } |
| 41 | 44 |
| 42 void ChromeShellDelegate::OpenFileManager(bool as_dialog) { | 45 void ChromeShellDelegate::OpenFileManager(bool as_dialog) { |
| 43 } | 46 } |
| 44 | 47 |
| 45 void ChromeShellDelegate::OpenCrosh() { | 48 void ChromeShellDelegate::OpenCrosh() { |
| 46 } | 49 } |
| 47 | 50 |
| 48 void ChromeShellDelegate::OpenMobileSetup(const std::string& service_path) { | 51 void ChromeShellDelegate::OpenMobileSetup(const std::string& service_path) { |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 | 117 |
| 115 void ChromeShellDelegate::Observe(int type, | 118 void ChromeShellDelegate::Observe(int type, |
| 116 const content::NotificationSource& source, | 119 const content::NotificationSource& source, |
| 117 const content::NotificationDetails& details) { | 120 const content::NotificationDetails& details) { |
| 118 // MSVC++ warns about switch statements without any cases. | 121 // MSVC++ warns about switch statements without any cases. |
| 119 NOTREACHED() << "Unexpected notification " << type; | 122 NOTREACHED() << "Unexpected notification " << type; |
| 120 } | 123 } |
| 121 | 124 |
| 122 void ChromeShellDelegate::PlatformInit() { | 125 void ChromeShellDelegate::PlatformInit() { |
| 123 } | 126 } |
| OLD | NEW |