| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 ObjectContentFrame, | 57 ObjectContentFrame, |
| 58 ObjectContentNetscapePlugin, | 58 ObjectContentNetscapePlugin, |
| 59 ObjectContentOtherPlugin | 59 ObjectContentOtherPlugin |
| 60 }; | 60 }; |
| 61 | 61 |
| 62 enum ShouldSendReferrer { | 62 enum ShouldSendReferrer { |
| 63 MaybeSendReferrer, | 63 MaybeSendReferrer, |
| 64 NeverSendReferrer | 64 NeverSendReferrer |
| 65 }; | 65 }; |
| 66 | 66 |
| 67 enum CreateWindowReason { |
| 68 CreatedFromWindowOpen, |
| 69 CreatedFromLoadRequest |
| 70 }; |
| 71 |
| 67 enum ReasonForCallingAllowPlugins { | 72 enum ReasonForCallingAllowPlugins { |
| 68 AboutToInstantiatePlugin, | 73 AboutToInstantiatePlugin, |
| 69 NotAboutToInstantiatePlugin | 74 NotAboutToInstantiatePlugin |
| 70 }; | 75 }; |
| 71 | 76 |
| 72 enum LoadStartType { | 77 enum LoadStartType { |
| 73 NavigationToDifferentDocument, | 78 NavigationToDifferentDocument, |
| 74 NavigationWithinSameDocument | 79 NavigationWithinSameDocument |
| 75 }; | 80 }; |
| 76 | 81 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 92 }; | 97 }; |
| 93 | 98 |
| 94 enum HistoryScrollRestorationType { | 99 enum HistoryScrollRestorationType { |
| 95 ScrollRestorationAuto, | 100 ScrollRestorationAuto, |
| 96 ScrollRestorationManual | 101 ScrollRestorationManual |
| 97 }; | 102 }; |
| 98 | 103 |
| 99 } | 104 } |
| 100 | 105 |
| 101 #endif | 106 #endif |
| OLD | NEW |