Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: content/browser/power_save_blocker_x11.cc

Issue 23880006: gtk: Allow building both the X11 and Gtk message-pumps for gtk. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tot-merge Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chromeos/display/real_output_configurator_delegate.cc ('k') | ui/aura/bench/bench_main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chromeos/display/real_output_configurator_delegate.cc ('k') | ui/aura/bench/bench_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698