| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/logging.h" | 14 #include "base/logging.h" |
| 15 #include "cros/chromeos_wm_ipc_enums.h" | 15 #include "third_party/cros/chromeos_wm_ipc_enums.h" |
| 16 | 16 |
| 17 typedef unsigned long Atom; | 17 typedef unsigned long Atom; |
| 18 typedef unsigned long XID; | 18 typedef unsigned long XID; |
| 19 | 19 |
| 20 namespace base { | 20 namespace base { |
| 21 template <typename T> struct DefaultLazyInstanceTraits; | 21 template <typename T> struct DefaultLazyInstanceTraits; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace chromeos { | 24 namespace chromeos { |
| 25 | 25 |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 | 137 |
| 138 // Handle to the wm. Used for sending messages. | 138 // Handle to the wm. Used for sending messages. |
| 139 XID wm_; | 139 XID wm_; |
| 140 | 140 |
| 141 DISALLOW_COPY_AND_ASSIGN(WmIpc); | 141 DISALLOW_COPY_AND_ASSIGN(WmIpc); |
| 142 }; | 142 }; |
| 143 | 143 |
| 144 } // namespace chromeos | 144 } // namespace chromeos |
| 145 | 145 |
| 146 #endif // CHROME_BROWSER_CHROMEOS_WM_IPC_H_ | 146 #endif // CHROME_BROWSER_CHROMEOS_WM_IPC_H_ |
| OLD | NEW |