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

Side by Side Diff: ui/aura/monitor_change_observer_x11.h

Issue 10675011: Rename the remaining usage of Monitor to Display (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync Created 8 years, 5 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 | « ui/aura/env.cc ('k') | ui/aura/monitor_change_observer_x11.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef UI_AURA_MONITOR_CHANGE_OBSERVER_X11_H
6 #define UI_AURA_MONITOR_CHANGE_OBSERVER_X11_H
7 #pragma once
8
9 #include <X11/Xlib.h>
10
11 // Xlib.h defines RootWindow.
12 #undef RootWindow
13
14 #include "base/basictypes.h"
15 #include "base/message_loop.h"
16
17 namespace aura {
18 namespace internal {
19
20 // An object that observes changes in monitor configuration and
21 // update MonitorManagers.
22 class MonitorChangeObserverX11 : public MessageLoop::Dispatcher {
23 public:
24 MonitorChangeObserverX11();
25 virtual ~MonitorChangeObserverX11();
26
27 // Overridden from Dispatcher overrides:
28 virtual bool Dispatch(const base::NativeEvent& xev) OVERRIDE;
29
30 // Reads display configurations from the system and notifies
31 // |monitor_manager_| about the change.
32 void NotifyDisplayChange();
33
34 private:
35 Display* xdisplay_;
36
37 ::Window x_root_window_;
38
39 int xrandr_event_base_;
40
41 DISALLOW_COPY_AND_ASSIGN(MonitorChangeObserverX11);
42 };
43
44 } // namespace internal
45 } // namespace aura
46
47 #endif // UI_AURA_MONITOR_CHANGE_OBSERVER_X11_H
OLDNEW
« no previous file with comments | « ui/aura/env.cc ('k') | ui/aura/monitor_change_observer_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698