OLD | NEW |
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 #ifndef WIN8_METRO_DRIVER_CHROME_APP_VIEW_ASH_H_ | 5 #ifndef WIN8_METRO_DRIVER_CHROME_APP_VIEW_ASH_H_ |
6 #define WIN8_METRO_DRIVER_CHROME_APP_VIEW_ASH_H_ | 6 #define WIN8_METRO_DRIVER_CHROME_APP_VIEW_ASH_H_ |
7 | 7 |
8 #include <windows.applicationmodel.core.h> | 8 #include <windows.applicationmodel.core.h> |
9 #include <windows.ui.core.h> | 9 #include <windows.ui.core.h> |
10 #include <windows.ui.input.h> | 10 #include <windows.ui.input.h> |
11 #include <windows.ui.viewmanagement.h> | 11 #include <windows.ui.viewmanagement.h> |
12 | 12 |
13 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
15 #include "base/message_loop.h" | 15 #include "base/message_loop.h" |
16 #include "base/string16.h" | 16 #include "base/strings/string16.h" |
17 #include "ui/base/events/event_constants.h" | 17 #include "ui/base/events/event_constants.h" |
18 #include "win8/metro_driver/direct3d_helper.h" | 18 #include "win8/metro_driver/direct3d_helper.h" |
19 | 19 |
20 namespace IPC { | 20 namespace IPC { |
21 class Listener; | 21 class Listener; |
22 class ChannelProxy; | 22 class ChannelProxy; |
23 } | 23 } |
24 | 24 |
25 class OpenFilePickerSession; | 25 class OpenFilePickerSession; |
26 class SaveFilePickerSession; | 26 class SaveFilePickerSession; |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 IPC::ChannelProxy* ui_channel_; | 148 IPC::ChannelProxy* ui_channel_; |
149 | 149 |
150 // The actual window behind the view surface. | 150 // The actual window behind the view surface. |
151 HWND core_window_hwnd_; | 151 HWND core_window_hwnd_; |
152 | 152 |
153 // UI message loop to allow message passing into this thread. | 153 // UI message loop to allow message passing into this thread. |
154 base::MessageLoop ui_loop_; | 154 base::MessageLoop ui_loop_; |
155 }; | 155 }; |
156 | 156 |
157 #endif // WIN8_METRO_DRIVER_CHROME_APP_VIEW_ASH_H_ | 157 #endif // WIN8_METRO_DRIVER_CHROME_APP_VIEW_ASH_H_ |
OLD | NEW |