OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_COMMON_MODAL_DIALOG_EVENT_H_ |
| 6 #define CHROME_COMMON_MODAL_DIALOG_EVENT_H_ |
| 7 |
| 8 // This structure is passed around where we need a modal dialog event, which |
| 9 // is currently not plumbed on Mac & Linux. |
| 10 // |
| 11 // TODO(port) Fix this. This structure should probably go away and we should |
| 12 // do the modal dialog event in some portable way. If you remove this, be |
| 13 // sure to also remove the ParamTraits for it in resource_messages.h |
| 14 struct ModalDialogEvent { |
| 15 #if defined(OS_WIN) |
| 16 HANDLE event; |
| 17 #endif |
| 18 }; |
| 19 |
| 20 #endif // CHROME_COMMON_MODAL_DIALOG_EVENT_H_ |
OLD | NEW |