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/chrome_content_browser_client.h" | 5 #include "chrome/browser/chrome_content_browser_client.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 #include <set> | 8 #include <set> |
9 #include <utility> | 9 #include <utility> |
10 #include <vector> | 10 #include <vector> |
(...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
883 #else | 883 #else |
884 NOTREACHED(); | 884 NOTREACHED(); |
885 main_parts = new ChromeBrowserMainParts(parameters); | 885 main_parts = new ChromeBrowserMainParts(parameters); |
886 #endif | 886 #endif |
887 | 887 |
888 chrome::AddProfilesExtraParts(main_parts); | 888 chrome::AddProfilesExtraParts(main_parts); |
889 | 889 |
890 // Construct additional browser parts. Stages are called in the order in | 890 // Construct additional browser parts. Stages are called in the order in |
891 // which they are added. | 891 // which they are added. |
892 #if defined(TOOLKIT_VIEWS) | 892 #if defined(TOOLKIT_VIEWS) |
893 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 893 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) && !defined(USE_OZONE) |
894 main_parts->AddParts(new ChromeBrowserMainExtraPartsViewsLinux()); | 894 main_parts->AddParts(new ChromeBrowserMainExtraPartsViewsLinux()); |
895 #else | 895 #else |
896 main_parts->AddParts(new ChromeBrowserMainExtraPartsViews()); | 896 main_parts->AddParts(new ChromeBrowserMainExtraPartsViews()); |
897 #endif | 897 #endif |
898 #endif | 898 #endif |
899 | 899 |
900 // TODO(oshima): Athena on chrome currently requires USE_ASH to build. | 900 // TODO(oshima): Athena on chrome currently requires USE_ASH to build. |
901 // We should reduce the dependency as much as possible. | 901 // We should reduce the dependency as much as possible. |
902 #if defined(USE_ASH) | 902 #if defined(USE_ASH) |
903 main_parts->AddParts(new ChromeBrowserMainExtraPartsAsh()); | 903 main_parts->AddParts(new ChromeBrowserMainExtraPartsAsh()); |
(...skipping 2323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3227 kWebRtcDevSwitchNames, | 3227 kWebRtcDevSwitchNames, |
3228 arraysize(kWebRtcDevSwitchNames)); | 3228 arraysize(kWebRtcDevSwitchNames)); |
3229 } | 3229 } |
3230 } | 3230 } |
3231 #endif // defined(ENABLE_WEBRTC) | 3231 #endif // defined(ENABLE_WEBRTC) |
3232 | 3232 |
3233 std::unique_ptr<content::MemoryCoordinatorDelegate> | 3233 std::unique_ptr<content::MemoryCoordinatorDelegate> |
3234 ChromeContentBrowserClient::GetMemoryCoordinatorDelegate() { | 3234 ChromeContentBrowserClient::GetMemoryCoordinatorDelegate() { |
3235 return memory::ChromeMemoryCoordinatorDelegate::Create(); | 3235 return memory::ChromeMemoryCoordinatorDelegate::Create(); |
3236 } | 3236 } |
OLD | NEW |