| 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_proxy.h" |   24 #include "base/message_loop/message_loop_proxy.h" | 
|   25 #if defined(TOOLKIT_GTK) |   25 #if defined(TOOLKIT_GTK) | 
|   26 #include "base/message_pump_gtk.h" |   26 #include "base/message_pump_gtk.h" | 
|   27 #else |   27 #else | 
|   28 #include "base/message_pump_aurax11.h" |   28 #include "base/message_pump_aurax11.h" | 
|   29 #endif |   29 #endif | 
|   30 #include "base/nix/xdg_util.h" |   30 #include "base/nix/xdg_util.h" | 
|   31 #include "base/synchronization/lock.h" |   31 #include "base/synchronization/lock.h" | 
|   32 #include "content/public/browser/browser_thread.h" |   32 #include "content/public/browser/browser_thread.h" | 
|   33 #include "dbus/bus.h" |   33 #include "dbus/bus.h" | 
|   34 #include "dbus/message.h" |   34 #include "dbus/message.h" | 
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  333     PowerSaveBlockerType type, const std::string& reason) |  333     PowerSaveBlockerType type, const std::string& reason) | 
|  334     : delegate_(new Delegate(type, reason)) { |  334     : delegate_(new Delegate(type, reason)) { | 
|  335   delegate_->Init(); |  335   delegate_->Init(); | 
|  336 } |  336 } | 
|  337  |  337  | 
|  338 PowerSaveBlockerImpl::~PowerSaveBlockerImpl() { |  338 PowerSaveBlockerImpl::~PowerSaveBlockerImpl() { | 
|  339   delegate_->CleanUp(); |  339   delegate_->CleanUp(); | 
|  340 } |  340 } | 
|  341  |  341  | 
|  342 }  // namespace content |  342 }  // namespace content | 
| OLD | NEW |