| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 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 | 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 WEBKIT_GLUE_WINDOW_OPEN_DISPOSITION_H__ | 5 #ifndef WEBKIT_GLUE_WINDOW_OPEN_DISPOSITION_H_ |
| 6 #define WEBKIT_GLUE_WINDOW_OPEN_DISPOSITION_H__ | 6 #define WEBKIT_GLUE_WINDOW_OPEN_DISPOSITION_H_ |
| 7 | 7 |
| 8 enum WindowOpenDisposition { | 8 enum WindowOpenDisposition { |
| 9 SUPPRESS_OPEN, | 9 SUPPRESS_OPEN, |
| 10 CURRENT_TAB, | 10 CURRENT_TAB, |
| 11 SINGLETON_TAB, |
| 11 NEW_FOREGROUND_TAB, | 12 NEW_FOREGROUND_TAB, |
| 12 NEW_BACKGROUND_TAB, | 13 NEW_BACKGROUND_TAB, |
| 13 NEW_POPUP, | 14 NEW_POPUP, |
| 14 NEW_WINDOW, | 15 NEW_WINDOW, |
| 15 SAVE_TO_DISK, | 16 SAVE_TO_DISK, |
| 16 OFF_THE_RECORD, | 17 OFF_THE_RECORD, |
| 17 IGNORE_ACTION | 18 IGNORE_ACTION |
| 18 }; | 19 }; |
| 19 | 20 |
| 20 #endif // WEBKIT_GLUE_WINDOW_OPEN_DISPOSITION_H__ | 21 #endif // WEBKIT_GLUE_WINDOW_OPEN_DISPOSITION_H_ |
| OLD | NEW |