| 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 "content/browser/power_save_blocker_impl.h" | 5 #include "content/browser/power_save_blocker_impl.h" |
| 6 | 6 |
| 7 #include <X11/Xlib.h> | 7 #include <X11/Xlib.h> |
| 8 #include <X11/extensions/dpms.h> | 8 #include <X11/extensions/dpms.h> |
| 9 // Xlib #defines Status, but we can't have that for some of our headers. | 9 // Xlib #defines Status, but we can't have that for some of our headers. |
| 10 #ifdef Status | 10 #ifdef Status |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "base/synchronization/lock.h" | 26 #include "base/synchronization/lock.h" |
| 27 #include "content/public/browser/browser_thread.h" | 27 #include "content/public/browser/browser_thread.h" |
| 28 #include "dbus/bus.h" | 28 #include "dbus/bus.h" |
| 29 #include "dbus/message.h" | 29 #include "dbus/message.h" |
| 30 #include "dbus/object_path.h" | 30 #include "dbus/object_path.h" |
| 31 #include "dbus/object_proxy.h" | 31 #include "dbus/object_proxy.h" |
| 32 | 32 |
| 33 #if defined(TOOLKIT_GTK) | 33 #if defined(TOOLKIT_GTK) |
| 34 #include "base/message_loop/message_pump_gtk.h" | 34 #include "base/message_loop/message_pump_gtk.h" |
| 35 #else | 35 #else |
| 36 #include "base/message_loop/message_pump_aurax11.h" | 36 #include "base/message_loop/message_pump_x11.h" |
| 37 #endif | 37 #endif |
| 38 | 38 |
| 39 namespace { | 39 namespace { |
| 40 | 40 |
| 41 enum DBusAPI { | 41 enum DBusAPI { |
| 42 NO_API, // Disable. No supported API available. | 42 NO_API, // Disable. No supported API available. |
| 43 GNOME_API, // Use the GNOME API. (Supports more features.) | 43 GNOME_API, // Use the GNOME API. (Supports more features.) |
| 44 FREEDESKTOP_API, // Use the FreeDesktop API, for KDE4 and XFCE. | 44 FREEDESKTOP_API, // Use the FreeDesktop API, for KDE4 and XFCE. |
| 45 }; | 45 }; |
| 46 | 46 |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 PowerSaveBlockerType type, const std::string& reason) | 334 PowerSaveBlockerType type, const std::string& reason) |
| 335 : delegate_(new Delegate(type, reason)) { | 335 : delegate_(new Delegate(type, reason)) { |
| 336 delegate_->Init(); | 336 delegate_->Init(); |
| 337 } | 337 } |
| 338 | 338 |
| 339 PowerSaveBlockerImpl::~PowerSaveBlockerImpl() { | 339 PowerSaveBlockerImpl::~PowerSaveBlockerImpl() { |
| 340 delegate_->CleanUp(); | 340 delegate_->CleanUp(); |
| 341 } | 341 } |
| 342 | 342 |
| 343 } // namespace content | 343 } // namespace content |
| OLD | NEW |