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

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

Issue 205963005: Delete "shutdown without closing browsers" path (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: gtk build fix Created 6 years, 9 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 | « chrome/browser/ui/ash/chrome_shell_delegate_chromeos.cc ('k') | chrome/browser/ui/browser.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 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/accessibility_delegate.h" 7 #include "ash/accessibility_delegate.h"
8 #include "ash/magnifier/magnifier_constants.h" 8 #include "ash/magnifier/magnifier_constants.h"
9 #include "ash/media_delegate.h" 9 #include "ash/media_delegate.h"
10 #include "ash/system/tray/default_system_tray_delegate.h" 10 #include "ash/system/tray/default_system_tray_delegate.h"
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 149
150 } // namespace 150 } // namespace
151 151
152 bool ChromeShellDelegate::IsFirstRunAfterBoot() const { 152 bool ChromeShellDelegate::IsFirstRunAfterBoot() const {
153 return false; 153 return false;
154 } 154 }
155 155
156 void ChromeShellDelegate::PreInit() { 156 void ChromeShellDelegate::PreInit() {
157 } 157 }
158 158
159 void ChromeShellDelegate::Shutdown() { 159 void ChromeShellDelegate::PreShutdown() {
160 } 160 }
161 161
162 ash::NewWindowDelegate* ChromeShellDelegate::CreateNewWindowDelegate() { 162 ash::NewWindowDelegate* ChromeShellDelegate::CreateNewWindowDelegate() {
163 return new NewWindowDelegateImpl; 163 return new NewWindowDelegateImpl;
164 } 164 }
165 165
166 ash::MediaDelegate* ChromeShellDelegate::CreateMediaDelegate() { 166 ash::MediaDelegate* ChromeShellDelegate::CreateMediaDelegate() {
167 return new MediaDelegateImpl; 167 return new MediaDelegateImpl;
168 } 168 }
169 169
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 void ChromeShellDelegate::PlatformInit() { 254 void ChromeShellDelegate::PlatformInit() {
255 #if defined(OS_WIN) 255 #if defined(OS_WIN)
256 registrar_.Add(this, 256 registrar_.Add(this,
257 chrome::NOTIFICATION_ASH_SESSION_STARTED, 257 chrome::NOTIFICATION_ASH_SESSION_STARTED,
258 content::NotificationService::AllSources()); 258 content::NotificationService::AllSources());
259 registrar_.Add(this, 259 registrar_.Add(this,
260 chrome::NOTIFICATION_ASH_SESSION_ENDED, 260 chrome::NOTIFICATION_ASH_SESSION_ENDED,
261 content::NotificationService::AllSources()); 261 content::NotificationService::AllSources());
262 #endif 262 #endif
263 } 263 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/ash/chrome_shell_delegate_chromeos.cc ('k') | chrome/browser/ui/browser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698