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/chromeos/chrome_browser_main_chromeos.h" | 5 #include "chrome/browser/chromeos/chrome_browser_main_chromeos.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
11 #include "base/callback.h" | 11 #include "base/callback.h" |
12 #include "base/chromeos/chromeos_version.h" | 12 #include "base/chromeos/chromeos_version.h" |
13 #include "base/command_line.h" | 13 #include "base/command_line.h" |
14 #include "base/lazy_instance.h" | 14 #include "base/lazy_instance.h" |
15 #include "base/message_loop.h" | 15 #include "base/message_loop.h" |
16 #include "base/string_number_conversions.h" | 16 #include "base/string_number_conversions.h" |
17 #include "base/string_split.h" | 17 #include "base/string_split.h" |
18 #include "chrome/browser/browser_process_impl.h" | 18 #include "chrome/browser/browser_process.h" |
19 #include "chrome/browser/chromeos/audio/audio_handler.h" | 19 #include "chrome/browser/chromeos/audio/audio_handler.h" |
20 #include "chrome/browser/chromeos/boot_times_loader.h" | 20 #include "chrome/browser/chromeos/boot_times_loader.h" |
21 #include "chrome/browser/chromeos/cros/cros_library.h" | 21 #include "chrome/browser/chromeos/cros/cros_library.h" |
22 #include "chrome/browser/chromeos/cryptohome/async_method_caller.h" | 22 #include "chrome/browser/chromeos/cryptohome/async_method_caller.h" |
23 #include "chrome/browser/chromeos/dbus/cros_dbus_service.h" | 23 #include "chrome/browser/chromeos/dbus/cros_dbus_service.h" |
24 #include "chrome/browser/chromeos/disks/disk_mount_manager.h" | 24 #include "chrome/browser/chromeos/disks/disk_mount_manager.h" |
25 #include "chrome/browser/chromeos/external_metrics.h" | 25 #include "chrome/browser/chromeos/external_metrics.h" |
26 #include "chrome/browser/chromeos/imageburner/burn_manager.h" | 26 #include "chrome/browser/chromeos/imageburner/burn_manager.h" |
27 #include "chrome/browser/chromeos/input_method/input_method_manager.h" | 27 #include "chrome/browser/chromeos/input_method/input_method_manager.h" |
28 #include "chrome/browser/chromeos/input_method/xkeyboard.h" | 28 #include "chrome/browser/chromeos/input_method/xkeyboard.h" |
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 LOG(WARNING) << "low_mem: Part of '100MB' experiment"; | 581 LOG(WARNING) << "low_mem: Part of '100MB' experiment"; |
582 chromeos::LowMemoryObserver::SetLowMemoryMargin(100); | 582 chromeos::LowMemoryObserver::SetLowMemoryMargin(100); |
583 } else if (trial->group() == margin_200mb) { | 583 } else if (trial->group() == margin_200mb) { |
584 LOG(WARNING) << "low_mem: Part of '200MB' experiment"; | 584 LOG(WARNING) << "low_mem: Part of '200MB' experiment"; |
585 chromeos::LowMemoryObserver::SetLowMemoryMargin(200); | 585 chromeos::LowMemoryObserver::SetLowMemoryMargin(200); |
586 } else { | 586 } else { |
587 LOG(WARNING) << "low_mem: Part of 'default' experiment"; | 587 LOG(WARNING) << "low_mem: Part of 'default' experiment"; |
588 } | 588 } |
589 } | 589 } |
590 } | 590 } |
OLD | NEW |