OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_CHROMEOS_WM_IPC_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_WM_IPC_H_ |
6 #define CHROME_BROWSER_CHROMEOS_WM_IPC_H_ | 6 #define CHROME_BROWSER_CHROMEOS_WM_IPC_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
10 #include <map> | 10 #include <map> |
11 #include <set> | 11 #include <set> |
12 #include <string> | 12 #include <string> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
15 #include "base/logging.h" | 15 #include "base/logging.h" |
16 #include "third_party/cros/chromeos_wm_ipc_enums.h" | 16 #include "third_party/cros_system_api/window_manager/chromeos_wm_ipc_enums.h" |
17 | 17 |
18 typedef unsigned long Atom; | 18 typedef unsigned long Atom; |
19 typedef unsigned long XID; | 19 typedef unsigned long XID; |
20 | 20 |
21 namespace base { | 21 namespace base { |
22 template <typename T> struct DefaultLazyInstanceTraits; | 22 template <typename T> struct DefaultLazyInstanceTraits; |
23 } | 23 } |
24 namespace gfx { | 24 namespace gfx { |
25 class Rect; | 25 class Rect; |
26 } | 26 } |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 | 172 |
173 // The current value of the root window's _CHROME_LAYOUT_MODE property. | 173 // The current value of the root window's _CHROME_LAYOUT_MODE property. |
174 WmIpcLayoutMode layout_mode_; | 174 WmIpcLayoutMode layout_mode_; |
175 | 175 |
176 DISALLOW_COPY_AND_ASSIGN(WmIpc); | 176 DISALLOW_COPY_AND_ASSIGN(WmIpc); |
177 }; | 177 }; |
178 | 178 |
179 } // namespace chromeos | 179 } // namespace chromeos |
180 | 180 |
181 #endif // CHROME_BROWSER_CHROMEOS_WM_IPC_H_ | 181 #endif // CHROME_BROWSER_CHROMEOS_WM_IPC_H_ |
OLD | NEW |