| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/chrome_browser_main_extra_parts_aura.h" | |
| 6 #include "chrome/browser/ui/views/aura/chrome_shell_delegate.h" | |
| 7 #include "ui/aura/desktop.h" | |
| 8 #include "ui/aura_shell/shell.h" | |
| 9 | |
| 10 #if defined(OS_CHROMEOS) | |
| 11 #include "chrome/browser/chromeos/system/runtime_environment.h" | |
| 12 #endif | |
| 13 | |
| 14 ChromeBrowserMainExtraPartsAura::ChromeBrowserMainExtraPartsAura() | |
| 15 : ChromeBrowserMainExtraParts() { | |
| 16 } | |
| 17 | |
| 18 void ChromeBrowserMainExtraPartsAura::PostBrowserProcessInit() { | |
| 19 #if defined(OS_CHROMEOS) | |
| 20 if (chromeos::system::runtime_environment::IsRunningOnChromeOS()) | |
| 21 aura::Desktop::set_use_fullscreen_host_window(true); | |
| 22 #endif | |
| 23 | |
| 24 // Shell takes ownership of ChromeShellDelegate. | |
| 25 aura_shell::Shell::CreateInstance(new ChromeShellDelegate); | |
| 26 } | |
| OLD | NEW |