| 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 #ifndef CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ | 6 #define CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ |
| 7 | 7 |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "chrome/browser/chrome_browser_main_linux.h" | 10 #include "chrome/browser/chrome_browser_main_linux.h" |
| 11 | 11 |
| 12 namespace contacts { | 12 namespace contacts { |
| 13 class ContactManager; | 13 class ContactManager; |
| 14 } // namespace contacts | 14 } // namespace contacts |
| 15 | 15 |
| 16 namespace chromeos { | 16 namespace chromeos { |
| 17 | 17 |
| 18 class BrightnessObserver; | 18 class BrightnessObserver; |
| 19 class MagnificationManager; |
| 19 class OutputObserver; | 20 class OutputObserver; |
| 20 class PowerButtonObserver; | 21 class PowerButtonObserver; |
| 21 class PowerStateOverride; | 22 class PowerStateOverride; |
| 22 class PrimaryDisplaySwitchObserver; | 23 class PrimaryDisplaySwitchObserver; |
| 23 class RemovableDeviceNotificationsCros; | 24 class RemovableDeviceNotificationsCros; |
| 24 class ResumeObserver; | 25 class ResumeObserver; |
| 25 class ScreenDimmingObserver; | 26 class ScreenDimmingObserver; |
| 26 class ScreenLockObserver; | 27 class ScreenLockObserver; |
| 27 class SessionManagerObserver; | 28 class SessionManagerObserver; |
| 28 class UserActivityNotifier; | 29 class UserActivityNotifier; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 scoped_ptr<chromeos::ScreenLockObserver> screen_lock_observer_; | 71 scoped_ptr<chromeos::ScreenLockObserver> screen_lock_observer_; |
| 71 scoped_ptr<chromeos::PowerButtonObserver> power_button_observer_; | 72 scoped_ptr<chromeos::PowerButtonObserver> power_button_observer_; |
| 72 scoped_refptr<chromeos::PowerStateOverride> power_state_override_; | 73 scoped_refptr<chromeos::PowerStateOverride> power_state_override_; |
| 73 scoped_ptr<chromeos::PrimaryDisplaySwitchObserver> | 74 scoped_ptr<chromeos::PrimaryDisplaySwitchObserver> |
| 74 primary_display_switch_observer_; | 75 primary_display_switch_observer_; |
| 75 scoped_ptr<chromeos::UserActivityNotifier> user_activity_notifier_; | 76 scoped_ptr<chromeos::UserActivityNotifier> user_activity_notifier_; |
| 76 scoped_ptr<chromeos::VideoActivityNotifier> video_activity_notifier_; | 77 scoped_ptr<chromeos::VideoActivityNotifier> video_activity_notifier_; |
| 77 scoped_ptr<chromeos::ScreenDimmingObserver> screen_dimming_observer_; | 78 scoped_ptr<chromeos::ScreenDimmingObserver> screen_dimming_observer_; |
| 78 scoped_refptr<chromeos::RemovableDeviceNotificationsCros> | 79 scoped_refptr<chromeos::RemovableDeviceNotificationsCros> |
| 79 removable_device_notifications_; | 80 removable_device_notifications_; |
| 81 scoped_ptr<chromeos::MagnificationManager> magnification_manager_; |
| 80 | 82 |
| 81 scoped_ptr<internal::DBusServices> dbus_services_; | 83 scoped_ptr<internal::DBusServices> dbus_services_; |
| 82 | 84 |
| 83 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos); | 85 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos); |
| 84 }; | 86 }; |
| 85 | 87 |
| 86 } // namespace chromeos | 88 } // namespace chromeos |
| 87 | 89 |
| 88 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ | 90 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ |
| OLD | NEW |