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

Side by Side Diff: chrome/browser/ui/ash/chrome_shell_delegate_views.cc

Issue 15937008: Unify ActivateCellular into network_connect.cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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
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 "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 #include "chrome/browser/ui/browser.h" 10 #include "chrome/browser/ui/browser.h"
(...skipping 14 matching lines...) Expand all
25 25
26 void ChromeShellDelegate::Shutdown() { 26 void ChromeShellDelegate::Shutdown() {
27 } 27 }
28 28
29 void ChromeShellDelegate::OpenFileManager(bool as_dialog) { 29 void ChromeShellDelegate::OpenFileManager(bool as_dialog) {
30 } 30 }
31 31
32 void ChromeShellDelegate::OpenCrosh() { 32 void ChromeShellDelegate::OpenCrosh() {
33 } 33 }
34 34
35 void ChromeShellDelegate::OpenMobileSetup(const std::string& service_path) {
36 }
37
38 void ChromeShellDelegate::ShowKeyboardOverlay() { 35 void ChromeShellDelegate::ShowKeyboardOverlay() {
39 } 36 }
40 37
41 void ChromeShellDelegate::ToggleHighContrast() { 38 void ChromeShellDelegate::ToggleHighContrast() {
42 } 39 }
43 40
44 bool ChromeShellDelegate::IsSpokenFeedbackEnabled() const { 41 bool ChromeShellDelegate::IsSpokenFeedbackEnabled() const {
45 return false; 42 return false;
46 } 43 }
47 44
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 void ChromeShellDelegate::PlatformInit() { 120 void ChromeShellDelegate::PlatformInit() {
124 #if defined(OS_WIN) 121 #if defined(OS_WIN)
125 registrar_.Add(this, 122 registrar_.Add(this,
126 chrome::NOTIFICATION_ASH_SESSION_STARTED, 123 chrome::NOTIFICATION_ASH_SESSION_STARTED,
127 content::NotificationService::AllSources()); 124 content::NotificationService::AllSources());
128 registrar_.Add(this, 125 registrar_.Add(this,
129 chrome::NOTIFICATION_ASH_SESSION_ENDED, 126 chrome::NOTIFICATION_ASH_SESSION_ENDED,
130 content::NotificationService::AllSources()); 127 content::NotificationService::AllSources());
131 #endif 128 #endif
132 } 129 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698