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

Side by Side Diff: src/platform/window_manager/window_manager.h

Issue 501116: wm: Update namespace and header define guards. (Closed)
Patch Set: move using directive inside of namespace for consistency Created 11 years 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
OLDNEW
1 // Copyright (c) 2009 The Chromium OS Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium OS 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 #ifndef __PLATFORM_WINDOW_MANAGER_WINDOW_MANAGER_H__ 5 #ifndef WINDOW_MANAGER_WINDOW_MANAGER_H_
6 #define __PLATFORM_WINDOW_MANAGER_WINDOW_MANAGER_H__ 6 #define WINDOW_MANAGER_WINDOW_MANAGER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <vector> 10 #include <vector>
11 #include <tr1/memory> 11 #include <tr1/memory>
12 12
13 extern "C" { 13 extern "C" {
14 #include <X11/Xlib.h> 14 #include <X11/Xlib.h>
15 #include <X11/extensions/shape.h> 15 #include <X11/extensions/shape.h>
16 #include <X11/extensions/Xrandr.h> 16 #include <X11/extensions/Xrandr.h>
17 } 17 }
18 18
19 #include <gtest/gtest_prod.h> // for FRIEND_TEST() macro 19 #include <gtest/gtest_prod.h> // for FRIEND_TEST() macro
20 20
21 #include "base/scoped_ptr.h" 21 #include "base/scoped_ptr.h"
22 #include "window_manager/atom_cache.h" // for Atom enum 22 #include "window_manager/atom_cache.h" // for Atom enum
23 #include "window_manager/clutter_interface.h" 23 #include "window_manager/clutter_interface.h"
24 24
25 typedef ::Atom XAtom; 25 typedef ::Atom XAtom;
26 typedef ::Window XWindow; 26 typedef ::Window XWindow;
27 27
28 namespace chromeos { 28 namespace window_manager {
29 29
30 class EventConsumer; 30 class EventConsumer;
31 class HotkeyOverlay; 31 class HotkeyOverlay;
32 class KeyBindings; 32 class KeyBindings;
33 class LayoutManager; 33 class LayoutManager;
34 class MetricsReporter; 34 class MetricsReporter;
35 class PanelBar; 35 class PanelBar;
36 class StackingManager; 36 class StackingManager;
37 class Window; 37 class Window;
38 class WmIpc; 38 class WmIpc;
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 291
292 // Is the hotkey overlay currently being shown? 292 // Is the hotkey overlay currently being shown?
293 bool showing_hotkey_overlay_; 293 bool showing_hotkey_overlay_;
294 294
295 // Shows overlayed images containing hotkeys. 295 // Shows overlayed images containing hotkeys.
296 scoped_ptr<HotkeyOverlay> hotkey_overlay_; 296 scoped_ptr<HotkeyOverlay> hotkey_overlay_;
297 297
298 DISALLOW_COPY_AND_ASSIGN(WindowManager); 298 DISALLOW_COPY_AND_ASSIGN(WindowManager);
299 }; 299 };
300 300
301 } // namespace chromeos 301 } // namespace window_manager
302 302
303 #endif 303 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698