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 |
11 #undef Status | 11 #undef Status |
12 #endif | 12 #endif |
13 | 13 |
14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
15 #include "base/bind.h" | 15 #include "base/bind.h" |
16 #include "base/callback.h" | 16 #include "base/callback.h" |
17 #include "base/command_line.h" | 17 #include "base/command_line.h" |
18 #include "base/environment.h" | 18 #include "base/environment.h" |
19 #include "base/files/file_path.h" | 19 #include "base/files/file_path.h" |
20 #include "base/logging.h" | 20 #include "base/logging.h" |
21 #include "base/memory/ref_counted.h" | 21 #include "base/memory/ref_counted.h" |
22 #include "base/memory/scoped_ptr.h" | 22 #include "base/memory/scoped_ptr.h" |
23 #include "base/memory/singleton.h" | 23 #include "base/memory/singleton.h" |
24 #include "base/message_loop/message_loop_proxy.h" | 24 #include "base/message_loop/message_loop_proxy.h" |
25 #if defined(TOOLKIT_GTK) | |
26 #include "base/message_pump_gtk.h" | |
27 #else | |
28 #include "base/message_pump_aurax11.h" | |
29 #endif | |
30 #include "base/nix/xdg_util.h" | 25 #include "base/nix/xdg_util.h" |
31 #include "base/synchronization/lock.h" | 26 #include "base/synchronization/lock.h" |
32 #include "content/public/browser/browser_thread.h" | 27 #include "content/public/browser/browser_thread.h" |
33 #include "dbus/bus.h" | 28 #include "dbus/bus.h" |
34 #include "dbus/message.h" | 29 #include "dbus/message.h" |
35 #include "dbus/object_path.h" | 30 #include "dbus/object_path.h" |
36 #include "dbus/object_proxy.h" | 31 #include "dbus/object_proxy.h" |
37 | 32 |
| 33 #if defined(TOOLKIT_GTK) |
| 34 #include "base/message_loop/message_pump_gtk.h" |
| 35 #else |
| 36 #include "base/message_loop/message_pump_aurax11.h" |
| 37 #endif |
| 38 |
38 namespace { | 39 namespace { |
39 | 40 |
40 enum DBusAPI { | 41 enum DBusAPI { |
41 NO_API, // Disable. No supported API available. | 42 NO_API, // Disable. No supported API available. |
42 GNOME_API, // Use the GNOME API. (Supports more features.) | 43 GNOME_API, // Use the GNOME API. (Supports more features.) |
43 FREEDESKTOP_API, // Use the FreeDesktop API, for KDE4 and XFCE. | 44 FREEDESKTOP_API, // Use the FreeDesktop API, for KDE4 and XFCE. |
44 }; | 45 }; |
45 | 46 |
46 // Inhibit flags defined in the org.gnome.SessionManager interface. | 47 // Inhibit flags defined in the org.gnome.SessionManager interface. |
47 // Can be OR'd together and passed as argument to the Inhibit() method | 48 // Can be OR'd together and passed as argument to the Inhibit() method |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 PowerSaveBlockerType type, const std::string& reason) | 334 PowerSaveBlockerType type, const std::string& reason) |
334 : delegate_(new Delegate(type, reason)) { | 335 : delegate_(new Delegate(type, reason)) { |
335 delegate_->Init(); | 336 delegate_->Init(); |
336 } | 337 } |
337 | 338 |
338 PowerSaveBlockerImpl::~PowerSaveBlockerImpl() { | 339 PowerSaveBlockerImpl::~PowerSaveBlockerImpl() { |
339 delegate_->CleanUp(); | 340 delegate_->CleanUp(); |
340 } | 341 } |
341 | 342 |
342 } // namespace content | 343 } // namespace content |
OLD | NEW |