OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 // Multiply-included message file, no include guard. | 5 // Multiply-included message file, no include guard. |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "ipc/ipc_message_macros.h" | 10 #include "ipc/ipc_message_macros.h" |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 bool) /* allow_multi_select */ | 129 bool) /* allow_multi_select */ |
130 | 130 |
131 // Requests the viewer to display the select folder dialog. | 131 // Requests the viewer to display the select folder dialog. |
132 IPC_MESSAGE_CONTROL1(MetroViewerHostMsg_DisplaySelectFolder, | 132 IPC_MESSAGE_CONTROL1(MetroViewerHostMsg_DisplaySelectFolder, |
133 string16) /* title */ | 133 string16) /* title */ |
134 | 134 |
135 // Informs the browser about the viewer activation state, i.e. active, lost | 135 // Informs the browser about the viewer activation state, i.e. active, lost |
136 // activation etc. | 136 // activation etc. |
137 IPC_MESSAGE_CONTROL1(MetroViewerHostMsg_WindowActivated, | 137 IPC_MESSAGE_CONTROL1(MetroViewerHostMsg_WindowActivated, |
138 bool) /* active */ | 138 bool) /* active */ |
| 139 |
| 140 // Lets the browser know that the viewer window changed size. |
| 141 IPC_MESSAGE_CONTROL2(MetroViewerHostMsg_WindowSizeChanged, |
| 142 int32, /* width */ |
| 143 int32) /* height */ |
OLD | NEW |