| OLD | NEW |
| 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 "chrome/browser/ui/views/ash/chrome_browser_main_extra_parts_ash.h" | 5 #include "chrome/browser/ui/views/ash/chrome_browser_main_extra_parts_ash.h" |
| 6 | 6 |
| 7 #include "chrome/browser/chrome_browser_main.h" | 7 #include "chrome/browser/chrome_browser_main.h" |
| 8 #include "chrome/browser/toolkit_extra_parts.h" | 8 #include "chrome/browser/toolkit_extra_parts.h" |
| 9 #include "chrome/browser/ui/ash/ash_init.h" | 9 #include "chrome/browser/ui/ash/ash_init.h" |
| 10 #include "chrome/browser/ui/ash/ash_util.h" | 10 #include "chrome/browser/ui/ash/ash_util.h" |
| 11 #include "ui/aura/desktop/desktop_screen.h" | 11 #include "ui/aura/desktop/desktop_screen.h" |
| 12 #include "ui/aura/desktop/desktop_stacking_client.h" | 12 #include "ui/aura/desktop/desktop_stacking_client.h" |
| 13 #include "ui/aura/env.h" | 13 #include "ui/aura/env.h" |
| 14 #include "ui/aura/single_display_manager.h" | |
| 15 #include "ui/gfx/screen.h" | 14 #include "ui/gfx/screen.h" |
| 16 #include "ui/gfx/screen_type_delegate.h" | 15 #include "ui/gfx/screen_type_delegate.h" |
| 17 | 16 |
| 18 #if defined(FILE_MANAGER_EXTENSION) | 17 #if defined(FILE_MANAGER_EXTENSION) |
| 19 #include "chrome/browser/ui/views/select_file_dialog_extension.h" | 18 #include "chrome/browser/ui/views/select_file_dialog_extension.h" |
| 20 #include "chrome/browser/ui/views/select_file_dialog_extension_factory.h" | 19 #include "chrome/browser/ui/views/select_file_dialog_extension_factory.h" |
| 21 #endif | 20 #endif |
| 22 | 21 |
| 23 #if !defined(OS_CHROMEOS) | 22 #if !defined(OS_CHROMEOS) |
| 24 class ScreenTypeDelegateWin : public gfx::ScreenTypeDelegate { | 23 class ScreenTypeDelegateWin : public gfx::ScreenTypeDelegate { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 chrome::CloseAsh(); | 61 chrome::CloseAsh(); |
| 63 } | 62 } |
| 64 | 63 |
| 65 namespace chrome { | 64 namespace chrome { |
| 66 | 65 |
| 67 void AddAshToolkitExtraParts(ChromeBrowserMainParts* main_parts) { | 66 void AddAshToolkitExtraParts(ChromeBrowserMainParts* main_parts) { |
| 68 main_parts->AddParts(new ChromeBrowserMainExtraPartsAsh()); | 67 main_parts->AddParts(new ChromeBrowserMainExtraPartsAsh()); |
| 69 } | 68 } |
| 70 | 69 |
| 71 } // namespace chrome | 70 } // namespace chrome |
| OLD | NEW |