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_browser_main_mac.h" | 5 #include "chrome/browser/chrome_browser_main_mac.h" |
6 | 6 |
7 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
8 #include <sys/sysctl.h> | 8 #include <sys/sysctl.h> |
9 | 9 |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
12 #include "base/mac/bundle_locations.h" | 12 #include "base/mac/bundle_locations.h" |
13 #include "base/mac/mac_util.h" | 13 #include "base/mac/mac_util.h" |
14 #include "base/mac/scoped_nsobject.h" | 14 #include "base/mac/scoped_nsobject.h" |
15 #include "base/metrics/histogram.h" | 15 #include "base/metrics/histogram.h" |
16 #include "base/path_service.h" | 16 #include "base/path_service.h" |
17 #import "chrome/browser/app_controller_mac.h" | 17 #import "chrome/browser/app_controller_mac.h" |
18 #include "chrome/browser/browser_process.h" | 18 #include "chrome/browser/browser_process.h" |
19 #import "chrome/browser/chrome_browser_application_mac.h" | 19 #import "chrome/browser/chrome_browser_application_mac.h" |
20 #include "chrome/browser/mac/install_from_dmg.h" | 20 #include "chrome/browser/mac/install_from_dmg.h" |
21 #import "chrome/browser/mac/keystone_glue.h" | 21 #import "chrome/browser/mac/keystone_glue.h" |
| 22 #include "chrome/browser/mac/timezone_notification.h" |
22 #include "chrome/browser/metrics/metrics_service.h" | 23 #include "chrome/browser/metrics/metrics_service.h" |
23 #include "chrome/common/chrome_paths.h" | 24 #include "chrome/common/chrome_paths.h" |
24 #include "chrome/common/chrome_switches.h" | 25 #include "chrome/common/chrome_switches.h" |
25 #include "components/breakpad/app/breakpad_mac.h" | 26 #include "components/breakpad/app/breakpad_mac.h" |
26 #include "content/public/common/main_function_params.h" | 27 #include "content/public/common/main_function_params.h" |
27 #include "content/public/common/result_codes.h" | 28 #include "content/public/common/result_codes.h" |
28 #include "ui/base/l10n/l10n_util_mac.h" | 29 #include "ui/base/l10n/l10n_util_mac.h" |
29 #include "ui/base/resource/resource_bundle.h" | 30 #include "ui/base/resource/resource_bundle.h" |
30 #include "ui/base/resource/resource_handle.h" | 31 #include "ui/base/resource/resource_handle.h" |
31 | 32 |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 [[NSUserDefaults standardUserDefaults] | 235 [[NSUserDefaults standardUserDefaults] |
235 setObject:@"NO" forKey:@"NSTreatUnknownArgumentsAsOpen"]; | 236 setObject:@"NO" forKey:@"NSTreatUnknownArgumentsAsOpen"]; |
236 // CoreAnimation has poor performance and CoreAnimation and non-CoreAnimation | 237 // CoreAnimation has poor performance and CoreAnimation and non-CoreAnimation |
237 // exhibit window flickering when layers are not hosted in the window server, | 238 // exhibit window flickering when layers are not hosted in the window server, |
238 // which is the default when not not using the 10.9 SDK. | 239 // which is the default when not not using the 10.9 SDK. |
239 // TODO: Remove this when we build with the 10.9 SDK. | 240 // TODO: Remove this when we build with the 10.9 SDK. |
240 if (base::mac::IsOSMavericksOrLater()) | 241 if (base::mac::IsOSMavericksOrLater()) |
241 [[NSUserDefaults standardUserDefaults] | 242 [[NSUserDefaults standardUserDefaults] |
242 setObject:@"YES" | 243 setObject:@"YES" |
243 forKey:@"NSWindowHostsLayersInWindowServer"]; | 244 forKey:@"NSWindowHostsLayersInWindowServer"]; |
| 245 |
| 246 ListenForTimeZoneChanges(); |
244 } | 247 } |
245 | 248 |
246 void ChromeBrowserMainPartsMac::PostProfileInit() { | 249 void ChromeBrowserMainPartsMac::PostProfileInit() { |
247 ChromeBrowserMainPartsPosix::PostProfileInit(); | 250 ChromeBrowserMainPartsPosix::PostProfileInit(); |
248 g_browser_process->metrics_service()->RecordBreakpadRegistration( | 251 g_browser_process->metrics_service()->RecordBreakpadRegistration( |
249 breakpad::IsCrashReporterEnabled()); | 252 breakpad::IsCrashReporterEnabled()); |
250 } | 253 } |
251 | 254 |
252 void ChromeBrowserMainPartsMac::DidEndMainMessageLoop() { | 255 void ChromeBrowserMainPartsMac::DidEndMainMessageLoop() { |
253 AppController* appController = [NSApp delegate]; | 256 AppController* appController = [NSApp delegate]; |
254 [appController didEndMainMessageLoop]; | 257 [appController didEndMainMessageLoop]; |
255 } | 258 } |
OLD | NEW |